paperclip-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@paperclip-mcpList my pending approvals"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
paperclip-mcp
MCP (Model Context Protocol) server for the Paperclip AI agent orchestration API.
Exposes Paperclip's REST API as MCP tools so any MCP-compatible AI client (Claude Desktop, Cursor, Kiro, etc.) can manage your AI companies, agents, projects, and tasks.
Tools
Tool | Description |
| Check server health |
| List all companies |
| Get a company by ID |
| Create a new company |
| List agents for a company |
| Get an agent by ID |
| List projects for a company |
| Get a project by ID |
| Create a new project |
| List issues for a company (optionally filtered by project) |
| Get an issue by ID |
| Create a new issue/task |
| List goals for a company |
| Create a new goal |
| Get cost summary for a company |
| Get recent activity for a company |
| List pending approvals for a company |
| Approve a pending approval |
| Reject a pending approval |
| Get dashboard summary for a company |
Related MCP server: CustomGPT MCP Server
Prerequisites
Node.js >= 18
A running Paperclip instance
A Board API Key (required when Paperclip runs in
authenticatedmode)
Obtaining a Board API Key
Paperclip instances running in authenticated mode require a Board API Key for API access. To get one:
Open the Paperclip UI in your browser (e.g.
http://localhost:3100)Sign in with your account
Use the CLI auth flow — the Paperclip CLI (
pnpm paperclipai) can generate a Board API Key via the challenge/approval processAlternatively, use the API directly:
# Create a CLI auth challenge curl -X POST http://localhost:3100/api/cli-auth/challenges \ -H 'Content-Type: application/json' \ -d '{"command": "paperclip-mcp", "clientName": "Paperclip MCP", "requestedAccess": "board"}'This returns an
approvalUrl— open it in your browser while signed in to approve the challenge. TheboardApiTokenfrom the response is your API key.
Setup
Kiro CLI
Add to ~/.kiro/settings/mcp.json:
{
"mcpServers": {
"paperclip": {
"command": "node",
"args": ["/path/to/paperclip-mcp/dist/index.js"],
"env": {
"PAPERCLIP_BASE_URL": "http://localhost:3100",
"PAPERCLIP_API_KEY": "pcp_board_your-api-key-here"
}
}
}
}Then restart Kiro CLI to load the MCP server.
npx (no install required)
PAPERCLIP_BASE_URL=http://localhost:3100 PAPERCLIP_API_KEY=pcp_board_... npx paperclip-mcpClaude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"paperclip": {
"command": "npx",
"args": ["paperclip-mcp"],
"env": {
"PAPERCLIP_BASE_URL": "http://localhost:3100",
"PAPERCLIP_API_KEY": "pcp_board_your-api-key-here"
}
}
}
}Cursor
Add to your MCP config (.cursor/mcp.json):
{
"mcpServers": {
"paperclip": {
"command": "npx",
"args": ["paperclip-mcp"],
"env": {
"PAPERCLIP_BASE_URL": "http://localhost:3100",
"PAPERCLIP_API_KEY": "pcp_board_your-api-key-here"
}
}
}
}Environment Variables
Variable | Default | Description |
|
| Paperclip server URL |
| (none) | Board API key (required for |
Development
git clone https://github.com/darljed/paperclip-mcp
cd paperclip-mcp
npm install
npm run build
PAPERCLIP_BASE_URL=http://localhost:3100 PAPERCLIP_API_KEY=pcp_board_... node dist/index.jsLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Remote MCP server to read and manage your Atako AI agents, messages, files, and integrations.
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Remote MCP server for The Colony — a social network for AI agents (posts, DMs, search, marketplace).
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server that exposes the Paperclip control plane API as tools for Claude Code agents — manage issues, coordinate agents, post comments, and orchestrate work without direct API calls.10016 npm2MIT
- AlicenseNot gradedqualityDmaintenanceA full-featured MCP server providing seamless access to CustomGPT.ai APIs, enabling agent and conversation management through MCP-compatible clients.5MIT
- AlicenseAqualityFmaintenanceMCP server that gives AI agents Lightning payments, L402 API access, trust verification, and service discovery.116 npmMIT
- AlicenseAqualityBmaintenanceMCP server for the Partiri Cloud PaaS platform. Enables AI agents to manage workspaces, projects, services, deployments, and metrics.231MIT