Token导航 LogoToken导航TokenDH.com
Freedcamp MCP logo
浏览器工具stdio官方级别未说明来源级核验

Freedcamp MCP

MCP Server

freedcamp-mcp

Freedcamp MCP Server 是一个用于Freedcamp任务管理的模型上下文协议服务器,支持创建、更新、列出和删除任务,并提供批量操作功能。

工具数

4

提示词数

0

GitHub Stars

0

资源数

0
批量操作API集成TypeScriptClaude任务管理Claude DesktopClaudeCursor

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

thelaunchengine

提供方

thelaunchengine

最后核验

2026/5/17 20:19

运行时

Node.js

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

npx freedcamp-mcp --http

详细介绍

Freedcamp MCP Server

](https://www.npmjs.com/package/freedcamp-mcp) ![license](./LICENSE) ![build](https://github.com/gabeosx/freedcamp-mcp/actions/workflows/ci.yml) ](https://www.npmjs.com/package/freedcamp-mcp) ](https://nodejs.org/) ](https://github.com/gabeosx/freedcamp-mcp/releases)

This is a Model Context Protocol (MCP) server implementation for Freedcamp task management. It provides tools for creating, updating, listing, and deleting tasks in Freedcamp projects with support for bulk operations.

Available Transport Methods:

  • STDIO Transport - Traditional MCP transport for IDE integrations (Claude Desktop, Cursor, etc.)
  • HTTP Transport - Modern REST API with Server-Sent Events for web applications and cloud deployments

Features

  • Create multiple tasks in a single operation with title, description, priority, due date, and assignee
  • Update existing tasks including status changes
  • List all tasks in a project
  • Delete tasks permanently
  • Bulk operations support for all task management operations
  • Environment variable support for credentials
  • Comprehensive error handling and validation

Prerequisites

  • Node.js 17 or higher
  • TypeScript
  • Freedcamp account with API access
  • API Key and Secret from Freedcamp
  • Project ID from Freedcamp

Installation (for manual invocation only, not necessary for usage with an IDE or other MCP desktop client)

  1. Clone the repository:
git clone 
cd freedcamp-mcp
  1. Install dependencies:
npm install
  1. Create a .env file in the root directory with your Freedcamp credentials:
FREEDCAMP_API_KEY=your_api_key
FREEDCAMP_API_SECRET=your_api_secret
FREEDCAMP_PROJECT_ID=your_project_id

Usage

Running the Server

First build the TypeScript code:

npm run build

STDIO Transport (Default)

This is the traditional transport method used by IDEs and MCP clients:

npm start

HTTP Transport

For containerized deployments and HTTP-based integrations:

Development (with .env file):

npm run start:http:test

Production (with environment variables):

npm run start:http

Direct execution:

# With environment variables
FREEDCAMP_API_KEY=your_key FREEDCAMP_API_SECRET=your_secret FREEDCAMP_PROJECT_ID=your_project npm run start:http

# Or using npx
npx freedcamp-mcp --http

The HTTP server will start on port 3000 (or the port specified by the PORT environment variable) and provide:

  • MCP endpoint: http://localhost:3000/mcp
  • Health check: http://localhost:3000/health

HTTP Transport Features:

  • Stateless operation - each request is independent
  • JSON responses with proper error handling
  • CORS support for web applications
  • Built-in health monitoring
  • Suitable for load balancing and clustering

Docker Deployment

For production deployments, you can use Docker to run the HTTP transport:

Using Docker Compose (Recommended)

  1. Create a .env file with your Freedcamp credentials:
FREEDCAMP_API_KEY=your_api_key
FREEDCAMP_API_SECRET=your_api_secret
FREEDCAMP_PROJECT_ID=your_project_id
  1. Start the service:
docker-compose up -d

Using Docker directly

# Build the image
docker build -t freedcamp-mcp .

# Run the container
docker run -d \
  --name freedcamp-mcp \
  -p 3000:3000 \
  -e FREEDCAMP_API_KEY=your_api_key \
  -e FREEDCAMP_API_SECRET=your_api_secret \
  -e FREEDCAMP_PROJECT_ID=your_project_id \
  freedcamp-mcp

The containerized server provides the same MCP functionality via HTTP transport, making it suitable for:

  • Cloud deployments
  • Kubernetes environments
  • Load-balanced setups
  • Integration with HTTP-based MCP clients

Running the Test Harness

The project includes comprehensive test harnesses that verify all MCP functionality for both transport methods:

STDIO Transport Test:

npm test

HTTP Transport Test:

npm run test:http

Both test harnesses perform the following checks:

  1. Server initialization with proper protocol version
  2. Tool listing and capability verification
  3. Single task creation, update, and deletion
  4. Bulk task operations (create, update, delete)
  5. Task listing and verification
  6. Error handling and edge cases

Note: The HTTP test harness requires the HTTP server to be running. Use npm run start:http:test to start the server with test environment variables loaded.

Available Tools

  1. freedcamp_add_task

- Creates one or more new tasks in Freedcamp - Input: Object with tasks array containing task details - Task Parameters: - title (required): Task title - should be clear and descriptive - description (optional): Detailed description of what the task involves - priority (optional): Task priority level (0=Low, 1=Normal, 2=High, 3=Urgent) - due_date (optional): Due date as Unix timestamp string (e.g., '1735689600' for 2025-01-01) - assigned_to_id (optional): User ID to assign the task to (must be valid Freedcamp user ID)

  1. freedcamp_update_task

- Updates one or more existing tasks in Freedcamp - Input: Object with tasks array containing task updates - Task Parameters: - task_id (required): ID of the task to update (must be valid existing Freedcamp task ID) - title (optional): New task title - description (optional): New task description - priority (optional): New task priority (0=Low, 1=Normal, 2=High, 3=Urgent) - due_date (optional): New due date as Unix timestamp string - assigned_to_id (optional): User ID to reassign the task to - status (optional): New task status (0=Open, 1=Completed, 2=Closed)

  1. freedcamp_list_tasks

- Retrieves all tasks in the configured Freedcamp project - No parameters required (uses project ID from environment variables) - Returns task details including ID, title, status, and other metadata

  1. freedcamp_delete_task

- Permanently deletes one or more tasks from Freedcamp - Input: Object with tasks array containing task IDs to delete - Task Parameters: - task_id (required): ID of the task to delete (WARNING: This action cannot be undone)

Example Usage

Creating multiple tasks:

{
  "tasks": [
    {
      "title": "Setup project structure",
      "description": "Initialize the basic project folder structure",
      "priority": 2,
      "due_date": "1735689600"
    },
    {
      "title": "Implement authentication",
      "description": "Add user login and registration functionality",
      "priority": 3,
      "assigned_to_id": "12345"
    }
  ]
}

Updating multiple tasks:

{
  "tasks": [
    {
      "task_id": "67890",
      "status": 1,
      "description": "Updated: Added OAuth integration"
    },
    {
      "task_id": "67891",
      "priority": 3,
      "due_date": "1735776000"
    }
  ]
}

Deleting multiple tasks:

{
  "tasks": [
    {
      "task_id": "67892"
    },
    {
      "task_id": "67893"
    }
  ]
}

IDE Integration

The server can be run directly using npx without cloning the repository. Choose between STDIO transport (traditional) or HTTP transport (modern) based on your needs.

Cursor

Option 1: STDIO Transport (Default)

  1. Open (or create) .cursor/mcp.json in your project root.
  2. Add your Freedcamp MCP server configuration:
   {
     "mcpServers": {
       "freedcamp": {
         "command": "npx",
         "args": ["freedcamp-mcp"],
         "env": {
           "FREEDCAMP_API_KEY": "your_api_key",
           "FREEDCAMP_API_SECRET": "your_api_secret",
           "FREEDCAMP_PROJECT_ID": "your_project_id"
         }
       }
     }
   }
  1. Restart Cursor or reload MCP servers.

Option 2: HTTP Transport

  1. First, start the HTTP server (in a separate terminal):
   npx freedcamp-mcp --http
   # Or with environment variables:
   FREEDCAMP_API_KEY=your_key FREEDCAMP_API_SECRET=your_secret FREEDCAMP_PROJECT_ID=your_project npx freedcamp-mcp --http
  1. Configure Cursor to use HTTP transport:
   {
     "mcpServers": {
       "freedcamp": {
         "transport": "http",
         "url": "http://localhost:3000/mcp"
       }
     }
   }
  1. Restart Cursor or reload MCP servers.

Claude Desktop

Option 1: STDIO Transport (Default)

  1. Open (or create) ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%/Claude/claude_desktop_config.json on Windows.
  2. Add your Freedcamp MCP server configuration:
   {
     "mcpServers": {
       "freedcamp": {
         "command": "npx",
         "args": ["freedcamp-mcp"],
         "env": {
           "FREEDCAMP_API_KEY": "your_api_key",
           "FREEDCAMP_API_SECRET": "your_api_secret",
           "FREEDCAMP_PROJECT_ID": "your_project_id"
         }
       }
     }
   }
  1. Restart Claude Desktop.

Option 2: HTTP Transport

  1. Start the HTTP server:
   npx freedcamp-mcp --http
  1. Configure Claude Desktop to use HTTP transport:
   {
     "mcpServers": {
       "freedcamp": {
         "transport": "http",
         "url": "http://localhost:3000/mcp"
       }
     }
   }
  1. Restart Claude Desktop.

Roo

Option 1: STDIO Transport (Default)

  1. Open (or create) your Roo MCP config file (commonly roo.mcp.json or similar).
  2. Add your Freedcamp MCP server configuration:
   {
     "mcpServers": {
       "Freedcamp": {
         "transport": "stdio",
         "command": "npx",
         "args": ["freedcamp-mcp"],
         "env": {
           "FREEDCAMP_API_KEY": "your_api_key",
           "FREEDCAMP_API_SECRET": "your_api_secret",
           "FREEDCAMP_PROJECT_ID": "your_project_id"
         }
       }
     }
   }

Option 2: HTTP Transport

  1. Start the HTTP server:
   npx freedcamp-mcp --http
  1. Configure Roo to use HTTP transport:
   {
     "mcpServers": {
       "Freedcamp": {
         "transport": "http",
         "url": "http://localhost:3000/mcp"
       }
     }
   }

API Reference

For detailed information about Freedcamp's API, visit: https://freedcamp.com/api-docs

License

MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

目录标签

目录标签

批量操作API集成TypeScriptClaude任务管理本地部署项目管理自动化

支持客户端

Claude DesktopClaudeCursor

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

oauth

运行时(runtime,运行环境)

Node.js

来源包(packageName,安装包名)

freedcamp-mcp

工具数量(toolCount,工具数)

4

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdiooauth部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP