Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
QNEXUS_MCP_PROJECTSNoComma-separated project allowlist, enforced on every mutating tool
QNEXUS_MCP_TOOLSETSNoCapability domains to expose (read,execute,manage,destructive)read
QNEXUS_MCP_ALLOW_SPENDNoPermit credit-spending (HQC) executionfalse
QNEXUS_MCP_MAX_CREDITSNoHard per-call HQC ceiling; 0 blocks all spend0
QNEXUS_MCP_MAX_OUTCOMESNoTop-N cap on distinct measurement outcomes returned per result (truncation is always reported)100
QNEXUS_MCP_ALLOW_HARDWARENoPermit real-QPU targetsfalse
QNEXUS_MCP_ALLOW_DESTRUCTIVENoPermit delete/cancel/archivefalse
QNEXUS_MCP_MAX_SUBMISSIONS_PER_MINUTENoSliding-window submission cap; each circuit in a batch counts as one6

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
nexus_auth_statusA

Report whether a valid Nexus session exists.

nexus_whoamiA

Return the authenticated Nexus user.

nexus_list_devicesA

List available backends and their status.

nexus_device_statusA

Report whether a device is online. Emulators/syntax checkers are always available.

nexus_list_projectsA

List Nexus projects visible to the user (one page of up to limit, plus the total count).

Optional name_like substring filter; set archived to list archived projects instead.

nexus_get_quotaA

Return remaining compilation/simulation quotas.

nexus_list_jobsA

List jobs visible to the user (one page of up to limit, plus the total count).

Optional filters: exact project name, status (e.g. COMPLETED, RUNNING, ERROR), and a name_like substring. Occasionally returns a Nexus-side server error unrelated to your request; if so, use nexus_job_status / nexus_get_results by id instead of retrying this call.

nexus_job_statusA

Return the status of a job by id.

nexus_job_costA

Return the HQC cost of an existing job by id.

nexus_get_resultsA

Return measurement counts for a completed job by id.

Counts are capped at the top --max-outcomes outcomes by frequency; total_outcomes / omitted_outcomes / omitted_shots report any truncation. Multi-circuit (batch) jobs return one entry per circuit under items, in submission order.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 10 tools

Disambiguation5/5

Each tool targets a distinct resource and action: auth status and whoami separate session validity from user identity; list_devices and device_status distinguish enumeration from specific status; job tools (list, status, cost, results) each serve a unique query purpose. No two tools overlap in what they retrieve.

Naming Consistency4/5

All tools share the 'nexus_' prefix and mostly follow a verb_noun (list_devices, get_quota) or resource_status (job_status, device_status) pattern. The 'whoami' tool deviates slightly from the pattern, but the naming remains predictable and readable.

Tool Count5/5

10 tools is a well-scoped count for a quantum computing platform, covering auth, devices, projects, quotas, and jobs without unnecessary bloat. Each tool earns its place for typical query workflows.

Completeness2/5

The set is heavily read-only, covering queries for auth, devices, projects, quotas, and job status/results, but lacks any tool to submit, cancel, or manage jobs or projects. This is a significant gap for a platform presumably intended to run quantum workloads, limiting agent capability.

Maintenance

ActivitySlowing
ResponsivenessNo issues