Freedcamp▌
by gabeosx
Connect with Freedcamp to seamlessly manage tasks—create, update, and delete with secure HMAC-SHA1 authentication.
Integrates with Freedcamp's task management platform to create, update, list, and delete tasks with bulk operations and secure HMAC-SHA1 authentication.
Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.
best for
- / Teams using Freedcamp for project management
- / Developers wanting task management in their IDE
- / Automating task creation and updates from code
capabilities
- / Create multiple tasks with titles, descriptions, priorities, and due dates
- / Update existing task status and details
- / List all tasks within a project
- / Delete tasks permanently
- / Perform bulk operations across multiple tasks
- / Authenticate securely using HMAC-SHA1
what it does
Connects to Freedcamp's task management platform to manage tasks directly from your IDE or MCP client. Supports bulk operations and secure authentication for task creation, updates, and deletion.
about
Freedcamp is a community-built MCP server published by gabeosx that provides AI assistants with tools and capabilities via the Model Context Protocol. Connect with Freedcamp to seamlessly manage tasks—create, update, and delete with secure HMAC-SHA1 authentication. It is categorized under productivity.
how to install
You can install Freedcamp in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
license
MIT
Freedcamp is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
readme
Freedcamp MCP Server
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)
- Clone the repository:
git clone <repository-url>
cd freedcamp-mcp
- Install dependencies:
npm install
- Create a
.envfile 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)
- Create a
.envfile with your Freedcamp credentials:
FREEDCAMP_API_KEY=your_api_key
FREEDCAMP_API_SECRET=your_api_secret
FREEDCAMP_PROJECT_ID=your_project_id
- 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:
- Server initialization with proper protocol version
- Tool listing and capability verification
- Single task creation, update, and deletion
- Bulk task operations (create, update, delete)
- Task listing and verification
- 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
-
freedcamp_add_task- Creates one or more new tasks in Freedcamp
- Input: Object with
tasksarray containing task details - Task Parameters:
title(required): Task title - should be clear and descriptivedescription(optional): Detailed description of what the task involvespriority(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)
-
freedcamp_update_task- Updates one or more existing tasks in Freedcamp
- Input: Object with
tasksarray 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 titledescription(optional): New task descriptionpriority(optional): New task priority (0=Low, 1=Normal, 2=High, 3=Urgent)due_date(optional): New due date as Unix timestamp stringassigned_to_id(optional): User ID to reassign the task tostatus(optional): New task status (0=Open, 1=Completed, 2=Closed)
-
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
-
freedcamp_delete_task- Permanently deletes one or more tasks from Freedcamp
- Input: Object with
tasksarray 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)
- Open (or create)
.cursor/mcp.jsonin your project root. - 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" } } } } - Restart Cursor or reload MCP servers.
Option 2: HTTP Transport
- 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 - Configure Cursor to use HTTP transport:
{ "mcpServers": { "freedcamp": { "transport": "http", "url": "http://localhost:3000/mcp" } } } - Restart Cursor or reload MCP servers.
Claude Desktop
Option 1: STDIO Transport (Default)
- Open (or create)
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS or%APPDATA%/Claude/claude_desktop_config.jsonon Windows. - 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" } } } } - Restart Claude Desktop.
Option 2: HTTP Transport
- Start the HTTP server:
npx freedcamp-mcp --http - Configure Claude Desktop to use HTTP transport:
{ "mcpServers": { "freedcamp": { "transport": "http", "url": "http://localhost:3000/mcp" } } } - Restart Claude Desktop.
Roo
Option 1: STDIO Transport (Default)
- Open (or create) your Roo MCP config file (commonly
roo.mcp.jsonor similar). - Add your Freedcamp MCP server configuration:
{ "mcpServers": { "Freedcamp": { "transport": "stdio", "com
FAQ
- What is the Freedcamp MCP server?
- Freedcamp is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for Freedcamp?
- This profile displays 51 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.8 out of 5—verify behavior in your own environment before production use.
Use Cases▌
Extended AI Capabilities
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Context Enhancement
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Workflow Automation
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Implementation Guide▌
Prerequisites
- ›Claude Desktop 0.7.0+ or Cursor IDE with MCP support
- ›Basic understanding of MCP architecture and capabilities
- ›Access credentials for integrated services (if required)
- ›Willingness to experiment and iterate on configuration
Time Estimate
15-60 minutes depending on server complexity
Installation Steps
- 1.Install MCP server: npm install -g [package-name] or via GitHub
- 2.Add server configuration to ~/.claude/mcp.json
- 3.Provide required credentials and configuration
- 4.Restart Claude Desktop to load new server
- 5.Test basic functionality with simple prompts
- 6.Explore capabilities and experiment with use cases
- 7.Document successful patterns for reuse
Troubleshooting
- ⚠MCP server not loading: Check config syntax, verify installation
- ⚠Connection errors: Check network, firewall, credentials
- ⚠Feature not working: Read server docs, check required parameters
- ⚠Performance issues: Monitor resource usage, check for network latency
- ⚠Conflicts with other servers: Check port assignments, namespace collisions
Best Practices▌
✓ Do
- +Read server documentation thoroughly before setup
- +Start with simple use cases to validate functionality
- +Test in non-production environment first
- +Monitor resource usage and performance
- +Keep servers updated for bug fixes and new features
- +Document configuration for team members
- +Use environment variables for sensitive configuration
✗ Don't
- −Don't grant overly permissive access to MCP servers
- −Don't skip reading security considerations in docs
- −Don't expose sensitive data without proper controls
- −Don't run untrusted MCP servers without code review
- −Don't ignore error messages—investigate root cause
💡 Pro Tips
- ★Combine multiple MCP servers for powerful workflows
- ★Create custom MCP servers for your specific needs
- ★Share successful configurations with team
- ★Use MCP inspector for debugging
- ★Join MCP community for tips and troubleshooting
Technical Details▌
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
- Model Context Protocol (MCP)
- JSON-RPC 2.0
- stdio or HTTP transport
Compatibility
- Claude Desktop
- Cursor IDE
- Custom MCP clients
When to Use This▌
✓ Use When
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid When
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.
Integration▌
- →Tool composition: Chain multiple MCP tools in workflows
- →Context augmentation: Provide AI with relevant external data
- →Action delegation: Let AI execute tasks on external systems
- →Bidirectional sync: Keep AI context and external systems in sync
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
List & Promote Your MCP Server
Share your MCP server with the developer community
Ratings
4.8★★★★★51 reviews- ★★★★★Neel Iyer· Dec 28, 2024
I recommend Freedcamp for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Neel Patel· Dec 24, 2024
According to our notes, Freedcamp benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
- ★★★★★Ganesh Mohane· Dec 16, 2024
Freedcamp is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
- ★★★★★Yusuf Robinson· Dec 8, 2024
Strong directory entry: Freedcamp surfaces stars and publisher context so we could sanity-check maintenance before adopting.
- ★★★★★Yusuf Mensah· Nov 27, 2024
Freedcamp has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
- ★★★★★Tariq Patel· Nov 23, 2024
Useful MCP listing: Freedcamp is the kind of server we cite when onboarding engineers to host + tool permissions.
- ★★★★★Kaira Iyer· Nov 19, 2024
According to our notes, Freedcamp benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
- ★★★★★Yusuf Chen· Nov 15, 2024
I recommend Freedcamp for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Rahul Santra· Nov 7, 2024
Freedcamp is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Pratham Ware· Oct 26, 2024
We evaluated Freedcamp against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 51