issue_api_key
Mint a fresh API key for your authenticated user or tenant. Useful for key rotation, CLI workflows, or MCP clients that obscure the Bearer token. The new key counts as 1 query against your daily quota.
Instructions
Mint a fresh API key for your current authenticated user/tenant. Useful for CLI workflows, key rotation, or MCP clients that hide the configured Bearer. The new key is tied to your existing plan. Counts as 1 query against your daily quota.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- bin/server.js:92-97 (registration)Tool 'issue_api_key' is registered in the static TOOLS array as one of the available tools. However, this is a local reference adapter that does not actually execute tools — it merely lists them and redirects callers to the hosted production server.
{ name: "issue_api_key", description: "Mint a fresh API key for your current authenticated user/tenant. Useful for CLI workflows, key rotation, or MCP clients that hide the configured Bearer. The new key is tied to your existing plan. Counts as 1 query against your daily quota.", inputSchema: { type: "object" }, }, - bin/server.js:114-117 (handler)The CallToolRequestSchema handler for ALL tools (including issue_api_key) returns a static redirect message. There is no actual implementation — the real tool executes on the hosted server at https://geo.thinair.co/mcp.
server.setRequestHandler(CallToolRequestSchema, async () => ({ content: [{ type: "text", text: REDIRECT_MESSAGE }], isError: false, }));