paperclip-mcp
Click on "Install 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/darljed/paperclip-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server