This guide walks you through setting up the Paca MCP (Model Context Protocol) server to integrate with your AI agents, enabling them to interact with Paca projects, tasks, sprints, and documents.
Before setting up the MCP server, ensure you have:
- A running Paca API instance (local or deployed)
- An API key from your Paca instance (generate it in user settings)
- Node.js 18+ installed (required by MCP clients)
The Paca MCP server is available as a GitHub package — no installation or build step required. Simply configure your MCP client to pull and run it directly using npx.
- Package:
@paca-ai/paca-mcp - Repository: github.com/paca-ai/paca (MCP server source lives under
apps/mcp)
To inspect the latest version of the MCP package:
npx @paca-ai/paca-mcp --versionThe MCP server can be integrated with various AI agents and platforms. Below are configuration guides for popular options.
Claude Desktop provides the most seamless integration with the Paca MCP server.
Configuration Steps:
-
Locate your Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
-
Add the following configuration:
{
"mcpServers": {
"paca": {
"command": "npx",
"args": [
"-y",
"@paca-ai/paca-mcp"
],
"env": {
"PACA_API_KEY": "your-api-key-here",
"PACA_API_URL": "http://localhost:8080"
}
}
}
}-
Replace the placeholder values:
your-api-key-herewith your actual Paca API keyhttp://localhost:8080with your Paca API URL if different
-
Restart Claude Desktop
Note: The npx -y @paca-ai/paca-mcp command automatically downloads and runs the latest version of the Paca MCP server from npm.
Usage in Claude Desktop:
Once configured, Claude will automatically have access to all 81 Paca tools. You can ask Claude to:
- "List all projects in my Paca workspace"
- "Create a new task for user authentication"
- "Create a sprint for the next 2 weeks"
- "Update the task status to in progress"
- "Add a comment to the design document"
The Paca MCP server follows the standard MCP protocol and can be used with any MCP-compatible client.
Required Configuration:
- Command: Use
npx -y @paca-ai/paca-mcpto automatically download and run the latest version - Environment Variables:
PACA_API_KEY(required): Your Paca API keyPACA_API_URL(optional): Paca API URL (default:http://localhost:8080)
Example Client Configuration:
Most MCP clients will accept configuration in this format:
{
"name": "paca",
"command": "npx",
"args": [
"-y",
"@paca-ai/paca-mcp"
],
"env": {
"PACA_API_KEY": "your-api-key-here",
"PACA_API_URL": "http://localhost:8080"
}
}For custom AI agents or applications, you can use the MCP server programmatically:
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";
const transport = new StdioClientTransport({
command: "npx",
args: ["-y", "@paca-ai/paca-mcp"],
env: {
PACA_API_KEY: "your-api-key-here",
PACA_API_URL: "http://localhost:8080"
}
});
const client = new Client({
name: "my-agent",
version: "1.0.0"
}, {
capabilities: {}
});
await client.connect(transport);
// List available tools
const tools = await client.listTools();
console.log("Available tools:", tools.tools);
// Call a tool
const result = await client.callTool({
name: "list_projects",
arguments: {}
});
console.log("Projects:", result.content);The Paca MCP server provides 81 tools across 16 categories:
- 📁 Project Management (5 tools): Create, read, update, delete projects
- ✅ Task Management (6 tools): Full task lifecycle management
- 🏃 Sprint Management (6 tools): Complete sprint workflow
- 📄 Document Management (5 tools): Document CRUD operations
- 👥 Project Members (5 tools): Team and role management
- 🎭 Project Roles (4 tools): Custom role definitions
- 🏷️ Task Types (5 tools): Task type configurations
- 📊 Task Statuses (4 tools): Workflow status management
- 🎯 Views (9 tools): Sprint, backlog, and timeline views
- 🔧 Custom Fields (5 tools): Custom field definitions
- 📎 Attachments (3 tools): File attachment management
- 📁 Document Folders (4 tools): Document organization
- 📸 Document Snapshots (2 tools): Document versioning
- 🔗 GitHub Integration (7 tools): Repository and PR linking
- 💬 Task Activities (4 tools): Comments and activity tracking
- 🔀 Task GitHub (5 tools): Branch and PR management
For a complete list of all tools with detailed descriptions, see the MCP README.
The MCP server automatically handles content conversion:
- Reading: Fetches content as BlockNote JSON and converts to Markdown for readability
- Writing: Accepts Markdown input and converts to BlockNote JSON for storage
This allows your AI agent to work with familiar Markdown format while Paca stores content in rich text format.
User: "Create a new sprint for next week and add these tasks:
1. Implement authentication
2. Set up database
3. Create user API"
Agent: (uses MCP tools)
1. create_sprint - Creates sprint "Sprint 1" with dates
2. create_task - Creates "Implement authentication" task
3. create_task - Creates "Set up database" task
4. create_task - Creates "Create user API" task
5. bulk_move_tasks - Moves all tasks to the new sprint
User: "Review all in-progress tasks and update their status based on completion"
Agent: (uses MCP tools)
1. list_tasks - Gets all tasks with "in_progress" status
2. get_task - Retrieves details for each task
3. update_task - Updates status to "done" or "blocked" based on analysis
User: "Create a system design document for the authentication module"
Agent: (uses MCP tools)
1. create_document - Creates "Authentication System Design" document
2. update_document - Adds Markdown content with architecture diagrams
3. create_doc_folder - Optionally organizes in "Architecture" folder
Once configured, you can test the MCP server directly through your MCP client:
After restarting Claude Desktop, simply ask Claude:
- "What Paca tools are available?"
- "List all my projects"
- "Create a test task"
Use the client's built-in testing tools to:
- List available tools
- Call sample tools
- Verify API authentication
To test with the MCP Inspector, clone the repository and run it locally:
git clone https://github.com/paca-ai/paca.git
cd paca/apps/mcp
npm install
npm run inspectorIssue: "Connection refused" error
- Solution: Ensure Paca API is running and
PACA_API_URLis correct
Issue: "Unauthorized" error
- Solution: Verify
PACA_API_KEYis valid and has proper permissions
Issue: "npx: command not found" error
- Solution: Ensure Node.js 18+ is installed and npx is in your PATH
Issue: Claude Desktop doesn't show Paca tools
- Solution: Check config file path, verify JSON syntax, and restart Claude Desktop
Issue: "Cannot find package '@paca-ai/paca-mcp'" error
- Solution: Ensure you have internet connectivity and npm registry access
Enable debug logging by setting:
export DEBUG="*"Then run the MCP server to see detailed logs.
- Never commit API keys to version control
- Use environment variables for sensitive configuration
- Limit API key permissions to only what your agent needs
- Rotate API keys regularly
- Use HTTPS for production deployments
- Explore the complete tool documentation
- Learn about the MCP server architecture
- Review Paca API documentation for deeper integration
- Check the main MCP README for development guide
- Report issues: GitHub Issues
- Documentation: docs/README.md
- Contributing: CONTRIBUTING.md