Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Project Planner Server

БесплатноНе проверен

A lightweight project and todo management MCP server built on Cloudflare Workers, allowing users to create projects, add todos, and track progress.

GitHubEmbed

Описание

A lightweight project and todo management MCP server built on Cloudflare Workers, allowing users to create projects, add todos, and track progress.

README

A remote Model Context Protocol server for lightweight project and todo management, built on Cloudflare Workers and Workers KV. It exposes tools that let any MCP client (Claude Desktop, the Cloudflare AI Playground, etc.) create projects, attach todos to them, and track progress — no authentication required.

Tools

Tool Description
create_project Create a new project (name, optional description)
list_projects List all projects
get_project Get a project by ID, including its todos
delete_project Delete a project and all of its todos
create_todo Create a todo under a project (title, optional description, priority)
get_todo Get a single todo by ID
update_todo Update a todo's title, description, status, or priority
delete_todo Delete a todo by ID
list_todos List a project's todos, optionally filtered by status

Data model

Data is stored in a single KV namespace (PROJECT_PLANNER_STORE):

  • project:list — array of all project IDs
  • project:<projectId> — the project object
  • project:<projectId>:todos — array of todo IDs belonging to that project
  • todo:<todoId> — the todo object

Project structure

remote-mcp-server-authless/
├── src/
│   └── index.ts          # MCP server definition (McpAgent + tools)
├── wrangler.jsonc         # Worker + KV namespace configuration
├── worker-configuration.d.ts  # Generated Env types (wrangler types)
└── tsconfig.json

Setup

Install dependencies:

npm install

Create a KV namespace (if you don't already have one) and set its id under kv_namespaces in wrangler.jsonc:

npx wrangler kv namespace create PROJECT_PLANNER_STORE

Development

Run the server locally:

npm run dev

This starts the Worker at http://localhost:8787, with the MCP endpoint at http://localhost:8787/mcp.

Other useful scripts:

npm run type-check   # tsc --noEmit
npm run lint:fix      # oxlint --fix
npm run format        # oxfmt --write .
npm run cf-typegen    # regenerate worker-configuration.d.ts from wrangler.jsonc

Deploy

npm run deploy

This deploys the Worker to https://remote-mcp-server-authless.<your-account>.workers.dev/mcp.

Connecting a client

Cloudflare AI Playground

  1. Go to https://playground.ai.cloudflare.com/
  2. Enter your server URL (http://localhost:8787/mcp locally, or your deployed *.workers.dev/mcp URL)
  3. The project planner tools become available in the playground

Claude Desktop

Claude Desktop speaks MCP over stdio, so remote servers are bridged via the mcp-remote proxy. In Claude Desktop, go to Settings → Developer → Edit Config, and add:

{
  "mcpServers": {
    "project-planner": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8787/mcp"
      ]
    }
  }
}

Swap in your deployed URL to connect to production instead of localhost. Restart Claude Desktop afterwards to pick up the new server.

from github.com/ThuongHan/project-planner-mcp

Установка Project Planner Server

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/ThuongHan/project-planner-mcp

FAQ

Project Planner Server MCP бесплатный?

Да, Project Planner Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Project Planner Server?

Нет, Project Planner Server работает без API-ключей и переменных окружения.

Project Planner Server — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить Project Planner Server в Claude Desktop, Claude Code или Cursor?

Открой Project Planner Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Project Planner Server with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории productivity