cortexcloud
Server Details
Pay-per-call QUBO/Ising optimization for AI agents via x402 (USDC on Base). No API keys.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- jonahthan433/cortexcloud-mcp
- GitHub Stars
- 0
- Server Listing
- CortexCloud MCP
Available Tools
10 toolscortex_ai_chatAInspect
Single-turn chat completion via /v1/ai/chat (x402-paid). Returns model reply + usage.
| Name | Required | Description | Default |
|---|---|---|---|
| messages | Yes | OpenAI-style messages array |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It clearly states the stateless single-turn nature, indicates a paid endpoint via 'x402-paid', and describes the response as containing model reply plus usage. It does not mention authentication or error cases, but it covers the core behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short, direct sentences with no filler. The core purpose and endpoint are front-loaded, and the return behavior is stated immediately after.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a low-complexity tool with a single fully documented parameter, the description is nearly complete: purpose, endpoint, paid nature, and return summary are all present. It leaves out details about authentication and the exact meaning of x402-paid, but those are not essential for an agent to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already fully documents the only parameter, 'messages', including its OpenAI-style structure and role/content fields. The description adds no additional parameter semantics, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly names the action (single-turn chat completion), the specific endpoint (/v1/ai/chat), and the return value (model reply + usage). This is clear enough to distinguish it from the optimization, research, and wallet-related sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'single-turn' qualifier implies when to use this tool, but there is no explicit guidance about alternatives or when not to use it. The description does not name any sibling tool or exclusion condition.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cortex_automation_http_requestBInspect
Outbound SSRF-guarded HTTP via /v1/automation/http-request (x402-paid, automation).
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Target URL (public, non-private IPs only) | |
| body | No | Outbound body (JSON-serialisable) | |
| method | No | HTTP method (default GET) | |
| headers | No | Outbound headers | |
| timeout | No | Timeout seconds (default 30) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral burden. It usefully discloses SSRF guarding and the x402-paid cost model, which are important safety and payment traits. It does not mention whether the response is returned, what side effects the remote endpoint may see, or any authentication requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense sentence that front-loads the core behavior ('Outbound SSRF-guarded HTTP') and then adds route and payment context. Every phrase carries useful information with no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and no annotations, the description should explain response and error behavior, but it does not. It also omits authentication details beyond the cryptic 'x402-paid' label, leaving an agent with incomplete expectations for using the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with all parameters such as url, method, headers, body, and timeout already documented. The tool description adds no additional parameter-level meaning beyond what the schema already provides, so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as outbound HTTP with SSRF guarding, and names the exact endpoint. It lacks an explicit verb like 'send' or 'make', but the meaning is unambiguous and distinguishes it from sibling automation tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'Outbound' implies it should be used when an external HTTP request is needed, and 'automation' gives a category context. However, it does not explicitly state when not to use it or compare it against alternatives such as cortex_automation_transform.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cortex_automation_transformBInspect
Shape arbitrary JSON via pick/omit/rename/set rules (x402-paid, automation).
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Arbitrary JSON to shape | |
| rules | No | Transform rules (pick/omit/rename/set) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It explains what the tool does but not key behavioral details: whether the input is mutated, what is returned, error behavior, or the implications of 'x402-paid'.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every word conveys meaningful information about the tool's purpose and context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is relatively simple and the schema covers both parameters, but with no annotations and no output schema, the description could add more about expected return value and payment/automation implications. It is adequate but not complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds the operation list (pick/omit/rename/set) but does not detail the actual structure of the rules object or how the operations are expressed, leaving the agent to infer rule syntax.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('shape') and resource ('arbitrary JSON') and names the operation types (pick/omit/rename/set). It is clear but does not explicitly distinguish itself from siblings beyond the 'automation' context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives. The 'automation' tag only weakly implies a context; it does not state exclusions, prerequisites, or how it relates to sibling tools like cortex_automation_http_request.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cortex_estimate_optimizationAInspect
Analyze an optimization problem for free — returns a machine-readable decision block: recommended mode/backend, estimated runtime, USDC price, benchmark evidence. Always call this before paying for cortex_optimize.
| Name | Required | Description | Default |
|---|---|---|---|
| problem | Yes | Optimization problem to analyze |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden. It discloses cost ('for free'), output contents, and workflow prerequisite. However, it does not explicitly state that it is read-only or has no side effects, leaving some ambiguity about whether it executes any optimization or stores data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the action and output, and includes a clear workflow instruction. Every phrase earns its place, with no unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the absence of an output schema, the description compensates by listing the return fields (mode/backend, runtime, USDC price, benchmark evidence). It also provides cost and usage context, making it sufficiently complete for an agent to decide when to invoke the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with detailed descriptions of problem, n, data, linear, and quadratic fields. The tool description adds no additional parameter semantics beyond referring to an 'optimization problem', so baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'Analyze an optimization problem for free' and lists specific outputs (recommended mode/backend, estimated runtime, USDC price, benchmark evidence). It explicitly distinguishes from the sibling cortex_optimize by saying 'Always call this before paying for cortex_optimize'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit usage guidance: 'Always call this before paying for cortex_optimize' establishes a clear workflow and names the alternative. The description implies this tool is for free estimation, while cortex_optimize is the paid execution step.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cortex_get_jobAInspect
Poll an optimization job by id. Free — returns status, solution, objective, error.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | Job id from cortex_optimize |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It usefully adds 'Free' and enumerates the return contents (status, solution, objective, error), which is helpful. But it does not disclose typical polling behaviors like repeated calls, rate limits, or what statuses may be returned.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences, front-loaded with the action and resource. Every word is informative, and there is no redundancy or unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter polling tool with no output schema, the description covers the essential return fields. It ties to cortex_optimize via the schema's parameter description. It could mention the polling lifecycle (e.g., call until status is complete), but the simplicity warrants a high score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides full coverage for job_id with a clear description ('Job id from cortex_optimize'). The tool description adds no additional meaning beyond the schema, so it meets the baseline but provides no extra value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's verb ('Poll') and resource ('optimization job by id'), and lists the returned content ('status, solution, objective, error'). This distinguishes it from sibling tools like cortex_optimize (which creates jobs) and cortex_estimate_optimization.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is used after cortex_optimize to check job status, and the schema reinforces this with 'Job id from cortex_optimize'. However, it does not explicitly state when not to use it or mention any alternative polling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cortex_list_backendsAInspect
List solver backends (classical/hybrid/quantum) with live availability and verified flag. Free — check before choosing a mode.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses that the tool is free, returns live availability, and includes a verified flag, which implies a read-only operation. This is richer than a bare listing, though it doesn't discuss auth or return format.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences, front-loaded with the action and resource. The second sentence adds actionable usage guidance without fluff. Perfectly sized.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the tool's purpose, the types of backends, additional output fields, cost, and when to use it. For a simple list tool with no output schema, this is adequate. It could optionally specify the return format, but the description is complete enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the description need not explain parameter syntax. Baseline 4 applies as there is no parameter ambiguity to resolve.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The verb 'List' clearly identifies a read-only enumeration, and the resource 'solver backends' is specific. The categories (classical/hybrid/quantum) and the mention of 'live availability' and 'verified flag' add concrete detail that differentiates it from sibling tools like 'optimize' or 'get_job'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context: 'check before choosing a mode' implies use this tool when you need to decide on a backend. While it doesn't name alternative tools, the context is sufficient for an agent to know when to invoke it. No exclusions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cortex_optimizeAInspect
Solve a QUBO/Ising optimization problem (x402-paid, USDC on Base). Returns a job_id to poll with cortex_get_job. Prices per successful run: classical $0.05, hybrid $0.10, quantum $1.503 (exact price quoted by POST /v1/estimate before payment). Use mode=auto unless you specifically need quantum.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Defaults to auto (fastest proven backend) | |
| problem | Yes | Problem to solve |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, but the description discloses key behavioral traits: the call is paid (x402, USDC on Base), prices differ by mode, only successful runs are charged, and the operation is asynchronous. It does not cover failure or refund behavior, but the most important side effects are surfaced.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three dense sentences, front-loaded with the core purpose, then essential operational and pricing details. Every sentence earns its place and there is no repetition of schema fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a paid, asynchronous, nested-parameter tool with no output schema, the description covers the main lifecycle: solve, get job_id, poll via cortex_get_job, and estimate cost. It slightly under-specifies what happens on failure or how the final result is structured, but overall it is reasonably complete for an agent to use the tool safely and correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds value beyond the schema by explaining mode semantics ('auto unless quantum'), mapping mode choices to prices, and noting the job_id return flow. It does not add detail to the problem structure, but the schema already covers that well.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Solve a QUBO/Ising optimization problem.' It also distinguishes itself from siblings by stating it returns a job_id to poll with cortex_get_job and by referencing price estimation, making the tool's role clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives explicit usage guidance: 'Use mode=auto unless you specifically need quantum,' and it directs the agent to POST /v1/estimate before payment for exact pricing. It also names cortex_get_job as the follow-up polling tool, creating a clear workflow.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cortex_research_searchAInspect
Web search via /v1/research/search (x402-paid). Returns ranked results with snippets.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default 10) | |
| query | Yes | Search query |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It usefully notes the 'x402-paid' nature (a cost/authorization signal) and that results are ranked with snippets. However, it does not mention rate limits, error behavior, or confirm read-only semantics, leaving some behavioral aspects undisclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two tight sentences, front-loaded with the core action and endpoint. Every word earns its place; there is no filler or repetition of schema information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 2-parameter tool with no output schema, the description gives enough context to call it correctly and interpret the broad result type. It could be more complete about the exact response shape, but 'ranked results with snippets' plus the schema's parameter docs suffice for basic usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%—both query and limit have descriptions. The tool description adds no parameter-specific meaning beyond what the schema already provides, making this baseline appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Web search via /v1/research/search' and clarifies the output ('ranked results with snippets'). This clearly distinguishes it from the listed sibling tools, none of which are web search operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage—when you need web search results—but provides no explicit when-to-use guidance, exclusions, or alternatives. Since no sibling performs web search, the lack of alternatives is less critical, but the guidance is still only implied rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cortex_token_priceBInspect
Spot price (USD) for an ERC-20 token by contract address or CoinGecko id. Free.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | CoinGecko coin id (e.g. 'ethereum') | |
| contract | No | ERC-20 contract address (0x...) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It states that the operation returns a spot price and is free, which gives some context, but it does not mention response format, rate limits, authentication, or what happens when no match is found. These gaps prevent a higher score.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no filler. The core purpose is front-loaded, and 'Free' earns its place as relevant cost information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple price lookup, the description covers the main input types and the output currency, but there is no output schema and no annotations. It omits details like whether one of the two parameters is required, expected response shape, or behavior in error cases, making it minimally adequate rather than complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters. The description paraphrases the parameter roles by mentioning 'contract address or CoinGecko id' but does not add meaningful semantics beyond that, such as whether exactly one is required or what happens if both are supplied.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the resource (ERC-20 token) and the output (spot price in USD), and it names the two input identifiers (contract address or CoinGecko id). It does not explicitly contrast itself with sibling tools, but its purpose is unambiguous and distinguishable from the provided siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool instead of alternatives, no exclusions, and no prerequisites. The word 'Free' hints at a cost advantage but does not reference any sibling tool or decision rule.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cortex_wallet_balancesBInspect
ERC-20 token balances (USD-valued) for an EOA address. Free.
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | EOA address (0x...) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden of behavioral disclosure. It reveals that results are USD-valued ERC-20 balances, but it does not mention auth requirements, rate limits, error behavior, or how it handles invalid addresses, leaving significant behavioral context undisclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely compact, front-loading the resource and scope in the first sentence, with minimal wasted words. 'Free' adds a distinct cost note without bloating the definition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter read tool, the description covers the required address input and indicates the core output (USD-valued balances). It does not detail return structure or edge cases, but the tool's simplicity and full schema coverage make this a minor gap rather than a critical one.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides 100% coverage for the single parameter, describing it as an EOA address, and the description simply restates 'EOA address' without adding format specifics or examples. This matches the baseline of relying on the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the resource (ERC-20 token balances) and scope (an EOA address), adding the useful detail that values are in USD. It distinguishes itself from siblings like cortex_token_price by the wallet-balance resource, though it does not explicitly name or contrast those siblings or use an explicit verb.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives. 'Free' is a cost signal, not usage direction, and no exclusions or alternative tool mentions are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
- Added
cortex_ai_chat - Added
cortex_automation_http_request - Added
cortex_automation_transform - Added
cortex_research_search - Added
cortex_token_price - Added
cortex_wallet_balances
26 tool updates
- Removed
base_balance - Removed
base_token_balance - Removed
chat_completions - Removed
coins_search - Added
cortex_estimate_optimization - Added
cortex_get_job - Added
cortex_list_backends - Added
cortex_optimize - Removed
crypto_history - Removed
defi_protocols - Removed
defi_yields - Removed
dex_pairs - Removed
dex_search - Removed
embeddings - Removed
eth_balance - Removed
ethereum_rpc - Removed
fx_list - Removed
fx_price - Removed
image_generation - Removed
models - Removed
news - Removed
prices - Removed
responses - Removed
search_contents - Removed
text_to_speech - Removed
web_search
22 tool updates
- First observed
base_balance - First observed
base_token_balance - First observed
chat_completions - First observed
coins_search - First observed
crypto_history - First observed
defi_protocols - First observed
defi_yields - First observed
dex_pairs - First observed
dex_search - First observed
embeddings - First observed
eth_balance - First observed
ethereum_rpc - First observed
fx_list - First observed
fx_price - First observed
image_generation - First observed
models - First observed
news - First observed
prices - First observed
responses - First observed
search_contents - First observed
text_to_speech - First observed
web_search
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Pay-per-call crypto market intelligence for AI agents. USDC on Base via x402.
Pay-per-call NLP & embeddings APIs on Base via x402. No keys/signup; agents pay per call in USDC.
Pay-per-call NLP & embeddings APIs on Base via x402. No keys/signup; agents pay per call in USDC.
25 pay-per-request intelligence APIs for AI agents via x402 micropayments (USDC/Base)
Related MCP Servers
AlicenseAqualityCmaintenancePre-trade DeFi intelligence for AI agents. 20 paid x402 endpoints, USDC on Base.23581MIT- AlicenseBqualityBmaintenanceConnects AI agents to the Base network for onchain data, batch USDC payments, and access to over 200 AI models. It utilizes the x402 protocol to enable pay-per-request functionality using USDC without requiring traditional API keys or accounts.100532MIT
- AlicenseAqualityCmaintenanceProvides AI agents with 10 pay-per-call utility tools (QR generation, DNS lookup, OCR, etc.) using USDC on Base via the x402 protocol, with agent's private key never leaving the agent.1167MIT

AfaAgent x402 API Suiteofficial
FlicenseNot gradedqualityCmaintenance43 x402-enabled API tools — DeFi, wallet security, AI/ML, developer tools, SEO. Pay-per-call USDC on Base via x402 protocol.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct operation: chat, HTTP automation, JSON transform, optimization planning/execution/polling, backend listing, research search, token price, and wallet balances. Related optimization tools are clearly separated into estimate, solve, and poll stages, so an agent can select the right one without ambiguity.
All tools share a snake_case 'cortex_' prefix, but the suffix pattern is inconsistent: some are verb_noun (get_job, list_backends), some are single verbs (optimize), and some are noun phrases (token_price, wallet_balances, ai_chat). The names are readable but do not follow a uniform convention.
Ten tools is a well-scoped size for a multi-purpose cloud API covering AI, automation, optimization, research, and crypto queries. Each tool maps to a distinct paid or free endpoint, and there is no obvious bloat or redundant functionality.
The optimization workflow is well covered with estimate, backend listing, solve, and job polling. Minor gaps exist, such as no job cancellation and read-only wallet tools with no transfer capability, but the main workflows agents would attempt can be completed without dead ends.