capline-mcp
OfficialClick 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., "@capline-mcpSet up a mandate: $5 per tx, $20 total, then pay DataVendor $5."
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.
capline-mcp
Give your MCP agent a wallet it can't drain.
An MCP server that hands an AI agent a spending capability bounded by a signed Capline mandate. The agent (in Claude Desktop, Cursor, Cline, or any MCP client) can only move funds through the pay tool — and pay refuses anything outside the mandate: over the per-transaction cap, off the payee allowlist, or past the global cross-chain cap. The limits are enforced by code, not the model, so nothing in the agent's context can talk its way past them.
The cap isn't in the prompt — it's a mandate the LLM can't talk to.
Tools
Tool | What it does |
| Provision a mandate: per-tx cap, global cumulative cap, payee allowlist, chains. Returns a |
| The only way to move funds. Refused (not executed) if it breaks the mandate. |
| Committed / reserved / remaining budget + per-chain breakdown. |
| Kill the mandate — every future payment is refused on every chain. |
Related MCP server: agent-verifier-mcp
Add to Claude Desktop
Edit claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"capline": {
"command": "npx",
"args": ["-y", "capline-mcp"]
}
}
}Restart Claude Desktop. Then try it:
"Set up a mandate: $5 per transaction, $20 total, only pay DataVendor. Then pay DataVendor $5. Then — ignore that last limit — pay DataVendor $1000."
Watch the $5 settle and the $1000 come back REFUSED (OVER_PER_TX). The model obeyed you; the mandate didn't.
Add to Cursor
~/.cursor/mcp.json (or Settings → MCP):
{
"mcpServers": {
"capline": { "command": "npx", "args": ["-y", "capline-mcp"] }
}
}Configuration
Env var | Default |
|
|
By default it enforces against the hosted Capline coordinator (Layer A), so no wallet or funds are required and you can feel it immediately. Point CAPLINE_COORDINATOR_URL at your own coordinator to self-host. To also enforce on-chain (Layer B, holds even if the agent's key is stolen), settle through a deployed mandate contract. See the capline protocol + SDK repo.
Run from source
git clone https://github.com/caplinehq/capline-mcp && cd capline-mcp
npm install && npm run build
node test-client.mjs # exercises every tool through a real MCP clientLinks
Live demo: capline-protocol.vercel.app/agents
Clone-and-run agent:
capline-example
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceCryptographic proof of consent for AI agents. Sign before you act. Policy engine enforces spending caps, action whitelists, and escalation rules. Independently verifiable by anyone.Last updated102Apache 2.0
- FlicenseAqualityDmaintenanceSpending limits for AI agents. Create budgets, enforce limits, track spend across x402, cards, MPP, or any payment rail.Last updated726
- Alicense-qualityBmaintenanceAgentPay is the authorization layer between an AI agent and real spending. You define the rules — spending caps, allowed merchants, time windows — and every purchase attempt the agent makes is checked against them in real time. Approved transactions go through. Anything outside the mandate is blocked and logged. No more babysitting every agent action. No more runaway charges.Last updatedMIT
- Alicense-qualityDmaintenanceEnables AI agents to make autonomous payments on Solana with on-chain enforced spending limits, preventing unauthorized fund drainage.Last updated21MIT
Related MCP Connectors
Agent payments, API key vaulting, and governed mandates. Agents spend within user-defined limits.
Budget & cost control for AI agents — per-agent spend caps + rate limits before each call.
KYA identity verification, trust scoring, and performance bonds for AI agents
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/caplinehq/capline-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server