quota-dashboard-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., "@quota-dashboard-mcpShow my quota summary"
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.
quota-dashboard-mcp
A local-run, privacy-first MCP server that exposes real-time AI subscription quota for Claude Code Max, Kimi, and Z.ai. It uses stdio transport, so it works with Claude Code, Cursor, VS Code, and any other MCP stdio client.
Tokens stay on your machine: they are read from environment variables at call time, never persisted to disk, and never sent anywhere except the provider's own API.
Looking for a GUI? See the sibling project
quota-dashboard.
Tools
Tool | Description |
| Unified quota summary across all configured providers. |
| Detailed quota for one provider ( |
| Flags providers over a usage threshold (default 80%) or missing/invalid tokens. |
Related MCP server: Claude Usage MCP Server
Install
Requirements
Node.js ≥ 18
A bearer token for each provider you want to query (see Token setup below)
Claude Code
Add the server to your Claude Code config (~/.claude/CONFIG.json or via /mcp):
{
"mcpServers": {
"quota-dashboard": {
"command": "npx",
"args": ["-y", "quota-dashboard-mcp@latest"],
"env": {
"CLAUDE_TOKEN": "your_claude_oauth_token",
"KIMI_TOKEN": "your_kimi_platform_api_key",
"ZAI_TOKEN": "your_zai_bearer_token"
}
}
}
}Cursor
Open Cursor Settings → MCP → Add new MCP server, then paste:
Name:
quota-dashboardType:
commandCommand:
env CLAUDE_TOKEN=your_claude_oauth_token KIMI_TOKEN=your_kimi_platform_api_key ZAI_TOKEN=your_zai_bearer_token npx -y quota-dashboard-mcp@latestVS Code
Add to your VS Code settings.json (requires the Claude AI extension or any MCP-compatible extension):
{
"mcp": {
"servers": {
"quota-dashboard": {
"command": "npx",
"args": ["-y", "quota-dashboard-mcp@latest"],
"env": {
"CLAUDE_TOKEN": "your_claude_oauth_token",
"KIMI_TOKEN": "your_kimi_platform_api_key",
"ZAI_TOKEN": "your_zai_bearer_token"
}
}
}
}
}Token setup
Claude Code Max
The quota endpoint requires an OAuth token from an authenticated Claude Code browser session. The easiest source is ~/.claude/credentials.json.
The server currently reads CLAUDE_TOKEN from the environment. To extract it:
# macOS
jq -r '.accessToken' ~/Library/Application\ Support/Claude/credentials.json
# Linux
jq -r '.accessToken' ~/.claude/credentials.jsonThen set CLAUDE_TOKEN to that value.
Kimi
Use a platform API key from platform.moonshot.cn. Set it as KIMI_TOKEN.
In practice, the same sk-kimi-... key used by Claude Code's Anthropic-compatible proxy also works for the Kimi usage endpoint. If your proxy key returns Invalid Authentication, create a dedicated platform API key from platform.moonshot.cn.
Z.ai
Use a Bearer token from your Z.ai account/dashboard. Set it as ZAI_TOKEN.
Local development
git clone https://github.com/ryan-knowone/quota-dashboard-mcp.git
cd quota-dashboard-mcp
npm install
# Run directly with tsx
CLAUDE_TOKEN=... KIMI_TOKEN=... ZAI_TOKEN=... npm run dev
# Or build and run
npm run build
CLAUDE_TOKEN=... KIMI_TOKEN=... ZAI_TOKEN=... npm startTesting a tool call
With the server running over stdio, send a JSON-RPC tools/call request:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_provider_quota",
"arguments": { "provider": "kimi", "mock": true }
}
}Privacy
Tokens are read from environment variables at call time.
Tokens are never written to disk (other than the env vars you already manage).
Tokens and usage data are never sent to telemetry or any third party except the provider's own API.
License
MIT
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/ryan-knowone/quota-dashboard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server