Project Manager MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Project Manager MCP ServerCreate a task called 'Fix login bug' with high priority"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Project Manager MCP Server
A small MCP (Model Context Protocol) server for a project-management
domain — create_task, list_tasks, update_task — backed by SQLite,
integrated with Claude Code, and deployable to Railway or Render over SSE.
How this maps to the assignment
Objective | Where |
MCP server exposing tools for an external system |
|
Configure Claude Code to use the server |
|
CLAUDE.md + commands leveraging the tools |
|
End-to-end workflow demo |
|
Learning goal | Where it shows up |
MCP architecture (host, client, server, transport) | Two transports implemented: |
Tool definitions with JSON Schema |
|
Integrate via |
|
Deploy with SSE transport |
|
Related MCP server: tpm-mcp
Project layout
src/
types.ts Task/Priority/Status types
db.ts SQLite persistence (better-sqlite3)
tools.ts Tool JSON Schemas + tools/call handler
server.ts Shared MCP Server factory (tools + resources)
index.ts stdio entry point (local Claude Code use)
sse.ts SSE/HTTP entry point (cloud deployment)
.claude/
settings.json auto-approves this project's MCP tools
commands/
create-task.md
list-tasks.md
update-task.md
task-report.md bonus: reads back a status summary
CLAUDE.md project context Claude Code reads automatically
.mcp.json local stdio server registration
.mcp.sse.json.example swap-in config for the deployed SSE server
Dockerfile build for Railway/Render
railway.json Railway build/deploy config
render.yaml Render Blueprint config
WALKTHROUGH.md scripted demo + how to record your ownThe three tools
Tool | Required args | Optional args | Behavior |
|
|
| Inserts a row, |
| — |
| Filters, newest first |
|
| — | Errors if |
There's also a read-only resource, tasks://summary, returning counts of
tasks by status — used by the /task-report command.
Run it locally
npm install
npm run build
npm start # stdio server, for manual testing outside Claude CodeOr skip the build step during development:
npm run dev # runs src/index.ts directly via tsxData is stored in tasks.db in the project root by default; override with
DB_PATH=/some/path/tasks.db.
Wire it up to Claude Code
Open this project directory in a terminal:
cd project-manager-mcp.Make sure it's built:
npm run build(the committed.mcp.jsonpoints atdist/index.js).Start
claudefrom this directory. Claude Code reads.mcp.jsonautomatically and will ask you to approve the project-scopedproject-managerserver the first time — approve it..claude/settings.jsonpre-allows the three tools so you won't get a permission prompt per-call;CLAUDE.mdgives Claude the context on when to use each one.Try it:
"Create a task called 'Set up CI' with medium priority" → calls
create_task/list-tasks→ callslist_tasks/update-task task_xxx in_progress→ callsupdate_task/task-report→ summarizes status counts
If you'd rather not build first, you can point .mcp.json at the dev
command instead:
{
"mcpServers": {
"project-manager": {
"command": "npx",
"args": ["tsx", "src/index.ts"]
}
}
}Deploy to Railway
npm install -g @railway/cli # if you don't have it
railway login
railway init
railway upRailway detects railway.json and builds the Dockerfile. Once deployed:
In the Railway dashboard, add a volume mounted at
/app/datasotasks.db(atDB_PATH=/app/data/tasks.db) survives redeploys.Grab the public URL Railway assigns (Settings → Networking → Generate Domain if it's not already public).
Verify it's up:
curl https://<your-app>.up.railway.app/should return a small JSON status blob.
Deploy to Render
Push this repo to GitHub.
In Render, "New" → "Blueprint", point it at the repo — it picks up
render.yamlautomatically (Docker build, persistent disk at/app/data,PORT/DB_PATHenv vars already set).Once live, verify with
curl https://<your-app>.onrender.com/.
Point Claude Code at the deployed server
Replace (or add an entry to) .mcp.json with the SSE config — see
.mcp.sse.json.example for the exact shape:
{
"mcpServers": {
"project-manager": {
"type": "sse",
"url": "https://<your-deployed-app>/sse"
}
}
}Restart Claude Code and re-run the same natural-language requests and slash commands — same tools, same data, now over the network instead of a local subprocess.
Design notes
Two transports, one server:
src/server.tsexports acreateServer()factory used by bothindex.ts(stdio) andsse.ts(SSE), so the tool logic intools.ts/db.tsis written once. The SSE entry point creates oneServerinstance per connection (matching the official MCP SDK examples) so concurrent clients don't share request state; they all read and write the same underlying SQLite file, though.SQLite over in-memory: the original example (
src/index.tsyou may have seen elsewhere) kept tasks in aMap, which resets on every restart. This version persists to SQLite viabetter-sqlite3so state survives restarts and redeploys (given a persistent volume).Validation:
tools.tschecks required fields and enum values before touching the database and returnsisError: truewith a plain-language message on bad input, rather than throwing.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceA simple task management server that enables users to add, list, complete, and delete tasks through natural language interactions in Claude Desktop.Last updated4
- FlicenseAqualityDmaintenanceAn AI-powered Technical Project Manager that enables Claude to track projects, features, and tasks locally using SQLite. Break down complex features, track progress and blockers, and manage hierarchical project structures through natural conversation.Last updated183
- Flicense-qualityDmaintenanceEnables project and task management through a lightweight SQLite database, allowing users to create projects, add categorized tasks, track status changes, and get project statistics through natural language commands.Last updated
- Flicense-qualityDmaintenanceEnables management of TickTick tasks and projects through the Model Context Protocol, supporting deployment on Vercel with SSE capabilities. Users can list, create, update, and complete tasks directly within AI clients like Claude.Last updated1
Related MCP Connectors
Manage projects, tasks, time tracking, and team collaboration through natural language.
Persistent context for Claude. Your AI always knows your projects and next actions across sessions.
Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cjafet/mcp-project-manager'
If you have feedback or need assistance with the MCP directory API, please join our Discord server