kitepass-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., "@kitepass-mcpCheck my Kite wallet balance"
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.
@kitepass/mcp-server
Model Context Protocol server for Kite Agent Passport. Give Claude, GPT, or any MCP-aware LLM the ability to authenticate, manage sessions, and execute x402 payments on Kite Mainnet.
What this is
KitePass MCP Server is an open-source implementation of an MCP server that bridges LLM agents with Kite's agent payment infrastructure. It wraps the kpass CLI operations as callable MCP tools, enabling any MCP-aware AI assistant to:
Check wallet balances on Kite Mainnet
Create and manage agent spending sessions
Execute x402 micropayments to paid APIs
List registered agents and their status
This is a community-built project, not officially endorsed by Anthropic or the Kite Foundation.
Related MCP server: hmpo-mcp-server-practice
Quick start
1. Install
npm install -g @kitepass/mcp-server2. Prerequisites
Node 18+
kpass CLI installed and logged in
kpass login --email your@email.com kpass me # should show your user info
3. Configure Claude Desktop
Add to your Claude Desktop config file:
OS | Path |
macOS |
|
Windows |
|
Linux |
|
{
"mcpServers": {
"kitepass": {
"command": "npx",
"args": ["@kitepass/mcp-server"]
}
}
}4. Restart Claude Desktop
You can now ask Claude:
"What's my Kite wallet balance?"
"Show me my active sessions"
"Create a $0.01 session for one hour"
"List the agents I have registered"
Available tools
Tool | Description | Type |
| Current logged-in user info | Read |
| Active/pending/expired agent sessions | Read |
| KITE + USDC.e balance | Read |
| Kite Passport backend health | Read |
| Create spending session (returns approval URL) | Write |
| Poll session approval state | Read |
| Execute x402 payment via approved session | Write |
| List registered agents | Read |
Architecture
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐ ┌────────────────┐
│ Claude Desktop │────▶│ KitePass MCP │────▶│ kpass CLI │────▶│ Kite Passport │
│ (MCP Client) │◀────│ Server │◀────│ (subprocess) │◀────│ Backend │
└─────────────────┘ └──────────────────┘ └─────────────────┘ └────────────────┘The MCP server runs as a local subprocess of Claude Desktop. Each tool call spawns a fresh kpass subprocess, executes the operation, and returns the result. No long-running processes or state is maintained between calls.
Security model
Identity: The MCP server runs with the user's kpass identity. All operations are performed as the logged-in user.
Write operations: Creating sessions and executing payments require an approved session. The approval URL must be opened by the human user — the AI cannot approve sessions itself.
No token exposure: JWT tokens and session secrets are never included in tool outputs. Error messages are sanitized.
URL validation: Payment execution refuses non-HTTPS URLs, localhost, and local network addresses.
Timeout protection: All operations have timeouts (30s default, 5min max for payments).
Configuration
Env var | Default | Purpose |
| (PATH lookup) | Override kpass binary location |
|
| Override Kite Passport backend URL |
Examples
See the examples/ directory for:
claude-desktop.json— Claude Desktop configurationbasic-agent.ts— Using MCP from a custom agentpayment-flow.ts— End-to-end payment example
Development
git clone https://github.com/gnanam1990/kitepass-mcp
cd kitepass-mcp
npm install
npm run build
npm testRoadmap
v0.1: 8 read/write tools, stdio transport, Claude Desktop integration (current)
v0.2: HTTP transport, observability tools, batch operations
v0.3: Multi-user / hosted mode
Contributing
Issues and PRs welcome. Please run npm test before submitting.
Credits
Built by Gnanam (@0x_art).
Thanks to the Kite Foundation and Anthropic teams for the foundational tooling.
License
MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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.
Related MCP Connectors
Read-only MCP tools for AI agent discovery, structured resources, and NIULAI information.
Read-only MCP server for Muovi, Argentina's trust-first local services marketplace (6 tools).
Read-only MCP access to a documented IT fleet: state, changes, posture. 15 tools.
The Cortex MCP server provides read-only access to real-time engineering context from the Cortex developer portal, allowing AI coding assistants to answer natural language questions about your organization's catalog (microservices, libraries, domains, teams, infrastructure), scorecards (engineering standards and best practices), initiatives (goals and deadlines), and Engineering Intelligence metrics. It includes tools for querying documentation, tracking personal entities, and accessing AI-assisted insights across the entire Cortex ecosystem.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables natural language access to Zerodha trading accounts for retrieving portfolio holdings, positions, orders, funds, and real-time market prices. Supports secure authentication for Indian stock market trading operations via Claude, Cursor, and other MCP-compatible AI tools.1-
- AlicenseNot gradedqualityCmaintenanceMCP server that exposes read-only tools to query a passport applications database, enabling an AI assistant to check application status without exposing personal applicant details.MIT
- AlicenseNot gradedqualityBmaintenanceEnables MCP clients to drive Relay, an AI support-triage agent, by exposing tools for customer lookup, documentation search, ticket classification, reply, and escalation, with full guardrails and read-only mode option.MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to investigate production incidents by exposing service health, logs, and deployment data through MCP tools.10-
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/gnanam1990/kitepass-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server