paperclip-mcp
MCP server for the Paperclip AI agent orchestration API, enabling management of AI companies, agents, projects, and tasks through any MCP-compatible client.
README
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 |
|---|---|
health_check |
Check server health |
list_companies |
List all companies |
get_company |
Get a company by ID |
create_company |
Create a new company |
list_agents |
List agents for a company |
get_agent |
Get an agent by ID |
list_projects |
List projects for a company |
get_project |
Get a project by ID |
create_project |
Create a new project |
list_issues |
List issues for a company (optionally filtered by project) |
get_issue |
Get an issue by ID |
create_issue |
Create a new issue/task |
list_goals |
List goals for a company |
create_goal |
Create a new goal |
get_costs |
Get cost summary for a company |
get_activity |
Get recent activity for a company |
list_approvals |
List pending approvals for a company |
approve |
Approve a pending approval |
reject_approval |
Reject a pending approval |
get_dashboard |
Get dashboard summary for a company |
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 process - Alternatively, use the API directly:
This returns an# 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"}'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-mcp
Claude 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_BASE_URL |
http://localhost:3100 |
Paperclip server URL |
PAPERCLIP_API_KEY |
(none) | Board API key (required for authenticated mode) |
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.js
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.