Project Manager
БесплатноНе проверенConnects Claude to a local project management API, enabling task, project, and user management through natural language.
Описание
Connects Claude to a local project management API, enabling task, project, and user management through natural language.
README
This project implements stdio MCP server, so that Claude can search data by sending requests to an API backend running on localhost:8000
Documentation: docs/ — implementation overview and full pm_* tool reference.
This is the entry point for your MCP server. Breaking it down:
@click.command() + @click.option — CLI interface with two flags:
--base-url: override the API URL without changing env vars (e.g.--base-url http://staging:8000)--transport: how Claude communicates with the server —stdio(default, used by Claude Desktop via stdin/stdout pipes),sseorstreamable-httpfor network-based transports
def main(...):
- Creates a
ProjectManagerClient— your HTTP client that talks to the FastAPI backend - Calls
build_mcp(client)— registers all thepm_*tools with the MCP framework, wrapping the client's methods as Claude-callable tools mcp.run(transport=transport)— starts the server loop, listening for tool calls from Claudeclient.close()infinally— cleanly shuts down the HTTP client when the process exits
Why stdio is the default: Claude Desktop launches this as a subprocess and communicates via stdin/stdout pipes — no network port needed. The sse/streamable-http options would be for remote deployments where Claude connects over HTTP instead.
In short: this boots the bridge between Claude and your project manager API, using whichever communication channel fits the deployment context.
How to register this local MCP server with Claude Desktop
You add below into mcpServers section of %APPDATA%\Claude\claude_desktop_config.json
What does this achieve in %APPDATA%\Claude\claude_desktop_config.json
"project-manager": {
"command": "uv",
"args": [
"run",
"--directory",
"c:\\Users\\amrusub\\programming\\pet_projects\\project_manager_mcp",
"project-manager-mcp"
],
"env": {
"PROJECT_MANAGER_API_BASE": "http://127.0.0.1:8000"
}
}
},
This registers a local MCP server called "project-manager" with Claude Desktop. Here's what each part does:
command: "uv" — uses uv (the fast Python package manager) to run the server
args — tells uv to run the project-manager-mcp entry point from your local project directory at c:\Users\amrusub\programming\pet_projects\project_manager_mcp
env — sets an environment variable so the MCP server knows to talk to your locally running API at http://127.0.0.1:8000
Net effect: When Claude Desktop starts, it spins up your local project-manager-mcp Python process in the background. Claude then gets access to whatever tools that server exposes (in your case, the project-manager:pm_* tools visible in this conversation — create tasks, list projects, manage users, etc.), all backed by your local FastAPI server on port 8000.
So it's essentially a bridge: Claude ↔ MCP server process ↔ your local REST API.
Установка Project Manager
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/samrullo/project_manager_mcpFAQ
Project Manager MCP бесплатный?
Да, Project Manager MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Project Manager?
Нет, Project Manager работает без API-ключей и переменных окружения.
Project Manager — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Project Manager в Claude Desktop, Claude Code или Cursor?
Открой Project Manager на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Notion
Read and write pages in your workspace
автор: NotionLinear
Issues, cycles, triage — from Claude
автор: LinearGoogle Drive
Search and read your Drive files
автор: Googlemindsdb/mindsdb
Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).
автор: mindsdbCompare Project Manager with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории productivity
