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
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.4/5 across 4 of 4 tools scored.
Each tool has a clearly distinct purpose: estimating, optimizing, polling, and listing backends. There is no overlap between the paid optimization call and the free estimation/metadata calls.
All tool names follow the cortex_<verb>_<noun> pattern (e.g., estimate_optimization, get_job, list_backends). The only minor deviation is cortex_optimize lacking a noun, but it is the core action and still fits the verb-first style.
Four tools perfectly cover the optimization workflow: estimate, execute, poll, and list options. This is a well-scoped set with no unnecessary additions.
The core lifecycle (estimate, optimize, get_job) is fully covered, plus backend discovery. A cancellation or job history tool would be a minor addition but is not essential to the primary workflow.
Available Tools
4 toolscortex_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 |
Tool Definition Quality
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 |
Tool Definition Quality
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 | |||
Tool Definition Quality
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 |
Tool Definition Quality
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
AlicenseAqualityBmaintenancePre-trade DeFi intelligence for AI agents. 20 paid x402 endpoints, USDC on Base.23561MIT- 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.11107MIT

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.
Your Connectors
Sign in to create a connector for this server.