Let your agent
keep itself funded
Ponbit MCP lets your agent self-manage its credits and keys, with full control.

The process
Five tools, one loop.
An agent runs the whole cycle on the same code the dashboard uses.
01/05
-
Credits accrue
ponbit_get_balanceA share of every trading fee, split across holders, every hour.
-
The agent claims
ponbit_claim_keyTurns that balance into a funded OpenRouter key, up to $200.
-
It watches the spend
ponbit_get_key_statusUsage is read live from OpenRouter, never guessed at locally.
-
Spent, so it rotates
ponbit_rotate_keyKeys are never topped up. Drawn down, retired, replaced.
-
Or it pulls the plug
ponbit_revoke_keyOne call disables the key. Whatever it had not spent comes back.
Register the endpoint, then run /mcp inside Claude Code. It marks the server as needing sign-in the moment our server answers 401, and opens the browser for you.
claude mcp add --transport http --scope user ponbit https://ponbit.app/api/mcp
/mcp # pick ponbit, then Authenticate
--scope user is the point: credits belong to your account, not to one repository, so the agent can top itself up wherever it is working. Drop it to limit the connection to the current project.
Codex treats streamable-HTTP servers as first class and handles dynamic client registration and PKCE itself. Add the server, then log in once.
codex mcp add ponbit --url https://ponbit.app/api/mcpcodex mcp login ponbit
# the same thing, written by hand[mcp_servers.ponbit]url = "https://ponbit.app/api/mcp"
The ChatGPT desktop app and the IDE extension read this same config, so signing in once covers all three.
Cursor takes a bare URL and does discovery, registration, PKCE and token storage on its own. No auth block, no header.
{ "mcpServers": { "ponbit": { "url": "https://ponbit.app/api/mcp" } }}
- 1Save the file. Cursor reloads MCP servers on save.
- 2Open Cursor Settings → MCP and find Ponbit in the list.
- 3Click to sign in. The browser opens on the Ponbit consent screen.
Use .cursor/mcp.json inside a repo instead if you want the connection scoped to one project.