Cold'S Server Project Management System
БесплатноНе проверенEnables AI assistants to create, manage, and track projects with associated todos, including CRUD operations and filtering by status, priority, and project.
Описание
Enables AI assistants to create, manage, and track projects with associated todos, including CRUD operations and filtering by status, priority, and project.
README
A powerful MCP (Model Context Protocol) server deployed on Cloudflare Workers that provides project and task management capabilities. This server allows AI assistants to create, manage, and track projects with associated todos through a simple API.
🚀 Features
- Project Management: Create, list, update, and delete projects
- Task Management: Create, organize, and track todos with priorities and due dates
- Cloud-Powered: Built on Cloudflare Workers for global availability
- Persistent Storage: Uses Cloudflare KV for reliable data persistence
- Real-time Sync: Server-Sent Events (SSE) support for real-time updates
- Type-Safe: Full TypeScript implementation with Zod validation
📋 Available Tools
Project Management
create-project- Create new projects with name and descriptionlist-projects- List all projects with detailsupdate-project- Update project name or descriptiondelete-project- Delete project and all associated todos
Todo Management
create-todo- Create todos with title, priority, and due dateslist-todos- List todos (all or by project)update-todo-status- Update todo status (pending/in-progress/completed)update-todo-priority- Update todo priority (low/medium/high)update-todo-title- Update todo titledelete-todo- Delete specific todos
Advanced Filtering
list-todos-by-status- Filter todos by statuslist-todos-by-priority- Filter todos by prioritylist-todos-by-project-and-status- Filter by project and statuslist-todos-by-project-and-priority- Filter by project and priority
🛠️ Installation & Deployment
Quick Deploy
Local Development
# Clone and setup
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
cd my-mcp-server
npm install
# Start development server
npm run dev
# Deploy to production
npm run deploy
🔧 Configuration
The server uses Cloudflare KV namespaces for data storage:
PROJECTS_KV- Stores project dataTODOS_KV- Stores todo/task data
Update your wrangler.jsonc:
{
"kv_namespaces": [
{
"binding": "PROJECTS_KV",
"id": "your-namespace-id",
"remote": true
},
{
"binding": "TODOS_KV",
"id": "your-namespace-id",
"remote": true
}
]
}
🔌 Connecting to MCP Clients
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"cold-project-manager": {
"command": "npx",
"args": [
"mcp-remote",
"https://your-worker.your-subdomain.workers.dev/sse"
]
}
}
}
Cloudflare AI Playground
- Visit https://playground.ai.cloudflare.com/
- Enter your worker URL:
https://your-worker.your-subdomain.workers.dev/sse - Start managing projects with AI!
📊 Usage Examples
Creating a Project
// Create a new React project
{
"action": "create-project",
"projectName": "my-react-app",
"projectDescription": "Modern React application with TypeScript"
}
Managing Todos
// Add a high-priority todo
{
"action": "create-todo",
"projectId": "project-uuid",
"todoTitle": "Set up CI/CD pipeline",
"todoPriority": "high"
}
// Update todo status
{
"action": "update-todo-status",
"todoId": "todo-uuid",
"todoStatus": "in-progress"
}
🏗️ Architecture
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ MCP Client │───▶│ Cloudflare Worker │───▶│ KV Storage │
│ (Claude/Playground)│ │ (MCP Server) │ │ (Projects/Todos)│
└─────────────────┘ └──────────────────┘ └─────────────────┘
🎯 Use Cases
- AI Project Assistants: Help developers manage their coding projects
- Task Automation: Create and track development workflows
- Team Collaboration: Shared project management across teams
- Learning Projects: Organize tutorial and learning project progress
- Freelance Work: Manage client projects and deliverables
🤝 Contributing
- Fork the repository
- Create a feature branch
- Add your tools to
src/index.ts - Update storage schemas in
src/storage.ts - Test with
npm run dev - Deploy and submit a PR
📝 License
MIT License - feel free to use this in your own MCP servers!
🔗 Links
Установка Cold'S Server Project Management System
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/kholodihor/mcp-serverFAQ
Cold'S Server Project Management System MCP бесплатный?
Да, Cold'S Server Project Management System MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Cold'S Server Project Management System?
Нет, Cold'S Server Project Management System работает без API-ключей и переменных окружения.
Cold'S Server Project Management System — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Cold'S Server Project Management System в Claude Desktop, Claude Code или Cursor?
Открой Cold'S Server Project Management System на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Cold'S Server Project Management System with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
