OAUTH 2.0
ANALYTICS
Connect to CoinMarketCap MCP. Access real-time crypto quotes, market metrics, technical analysis, trending narratives, and news from your AI workflows.
token = client.agent.get_token(user_id="user_id", connector="coinmarketcapmcp")
mcp = MultiServerMCPClient({"coinmarketcapmcp": {"url": "https://mcp.scalekit.com/coinmarketcapmcp", "headers": {"Authorization": "Bearer " + token}}})const token = await client.agent.getToken({ userId: "user_id", connector: "coinmarketcapmcp" });
// Connect to MCP at https://mcp.scalekit.com/coinmarketcapmcpconst token = await client.agent.getToken({ userId: "user_id", connector: "coinmarketcapmcp" });
// Connect to MCP at https://mcp.scalekit.com/coinmarketcapmcptoken = client.agent.get_token(user_id="user_id", connector="coinmarketcapmcp")
# Connect to MCP at https://mcp.scalekit.com/coinmarketcapmcpDoes the agent access CoinMarketCap as the user or as a shared key?
As the user. Each workspace member authorizes once and Scalekit resolves their credential at request time. Audit logs attribute every action to that user, not a shared service account.
Where is the CoinMarketCap OAuth token stored?
In Scalekit's managed AES-256 token vault, namespaced per tenant. Refresh is automatic. Revocation is a single dashboard action. Tokens never appear in prompts, logs, or LLM context.
Can I limit what the agent is allowed to do in CoinMarketCap?
Yes. Pass a tool name filter to listScopedTools so the analytics agent only sees the subset you authorize. Pre-API-call scope checks block out-of-policy actions before the request reaches CoinMarketCap.
What happens when a user revokes CoinMarketCap access?
The connection is invalidated on the next tool call. Subsequent requests for that user fail closed with a clear error. Other users in the tenant remain unaffected. The event is logged for audit.
Whose CoinMarketCap plan do quote requests use?
The authorizing user's. Quotes, metrics, and technical analysis draw on that user's API tier, so rate limits and plan entitlements stay per user.