✨ TPC Server ✨
@suttonwilliamd
About ✨ TPC Server ✨
Thoughts Plans Changelog is an MCP compliant server for coding with AI agents
Basic information
Config
No standard config provided
This server doesn't expose a parseable MCP config block in its README. See the repository for install instructions.
RepositoryTools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is TPC Server?
A Node.js/Express API for AI‑human collaboration, with SQLite persistence for storing thoughts and plans. It provides both a REST API and a full MCP (Model Context Protocol) server, making it ideal for AI agent workflows and developers building collaborative tools.
How to use TPC Server?
Install dependencies with npm install, then start the server via node server.js (runs on http://localhost:3001). For AI clients, run the MCP server with npm run mcp (stdio transport) and configure your MCP client accordingly. Use the REST API endpoints or the included web UI at /index.html.
Key features of TPC Server
- Full MCP protocol implementation for AI clients (stdio transport).
- SQLite persistence with idempotent schema migrations.
- Modular server architecture (db/, routes/, middleware/).
- Comprehensive testing (Jest, Playwright, MCP smoke tests).
- Full‑text search with type/tag/limit filters.
- Tagging system for plans and thoughts (add, edit, filter).
- Rich text support in plan descriptions (Markdown via marked.js).
Use cases of TPC Server
- AI agents storing and retrieving thoughts and plans via MCP.
- Human‑in‑the‑loop editing with review flags and context aggregation.
- Tag‑based organization and filtering of collaborative notes.
- Rapid prototyping of AI‑assisted project management tools.
- Searching across plans and thoughts with unified
/searchendpoint.
FAQ from TPC Server
What is the MCP server and how do I use it?
The MCP server (mcp‑server.js) implements the Model Context Protocol over stdio transport, providing tools like list_plans, create_thought, and resources such as tpc://plans. Start it with npm run mcp.
What database does TPC Server use?
It uses a SQLite database stored in data/tpc.db for persistent storage of plans and thoughts. Schema migrations are idempotent and backward compatible.
How can I secure the production server?
The /tpc.db download endpoint is disabled by default in production. To explicitly allow it, set the environment variable EXPOSE_TPC_DB=true.
What REST endpoints are available?
Key endpoints include GET /thoughts, GET /plans, POST /thoughts, POST /plans, PATCH /plans/:id, GET /search, and tag management endpoints. Health checks are at GET /health and GET /ready.
How do I run tests?
Unit/integration tests: npm test (Jest). E2E UI tests: npm run test:e2e (Playwright). MCP lifecycle tests: npm run smoke:mcp.
More Other MCP servers
Production-ready MCP integrations for AI applications
Klavis-AIKlavis AI: MCP integration platforms that let AI agents use tools reliably at any scale
Inbox Zero AI
elie222The world's best AI personal assistant for email. Open source app to help you reach inbox zero fast.
MCP Registry
modelcontextprotocolA community driven registry service for Model Context Protocol (MCP) servers.
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
Codelf
unbugA search tool helps dev to solve the naming things problem.
Comments