Skip to main content
Glama
mannutech
by mannutech

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
O1_API_KEYYesAPI key sent as x-api-key (issued by o1).
O1_LOG_LEVELNodebug/info/warn/error. Logs go to stderr only.info
O1_MAX_RETRIESNoRetries for /health & /quote on 429/5xx.2
O1_API_BASE_URLYesAggregator base URL, no trailing slash. Prod: https://quiet-bloodhound-531.convex.site.
O1_ENABLE_BUILD_TXNoRegister the gated /submit + /execute tools.false
O1_HTTP_TIMEOUT_MSNoPer-request timeout (ms).8000
O1_ALLOWED_CHAIN_IDSNoChain allowlist. Base only (phase 1).8453
O1_ALLOW_HIGH_SLIPPAGENoAllow slippage above the 2000 bps cap.false
O1_DEFAULT_SLIPPAGE_BPSNoDefault slippage (bps) when a quote omits it.100

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
}

Tools

Functions exposed to the LLM to take actions

NameDescription
o1_healthA

Check o1.exchange aggregator liveness (GET /health). No auth, no parameters. Returns { ok, raw }.

o1_get_quoteA

Get a live DEX-aggregator swap quote on Base (o1.exchange). Read-only — no wallet or signing. Pass token addresses or "ETH". amountIn is in base units (wei). Returns a compact route summary + raw. Quotes expire in ~10s.

o1_list_supported_dexesA

List the DEX venues (DexId enum) the o1 aggregator can route through on Base. No parameters.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.4/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: quotes, health check, and listing supported DEXs. No overlap or ambiguity.

Naming Consistency4/5

All tools follow the 'o1_' prefix with descriptive names. While 'o1_health' is a noun instead of verb_noun, the pattern is still clear and consistent.

Tool Count5/5

Three tools is appropriate for a focused read-only aggregator interface. Each tool serves a necessary function without excess.

Completeness4/5

Covers core read operations (quote, health, supported DEXs) for the aggregator. Missing swap execution or token details, but the scope is explicitly read-only.

Maintenance

ActivityInactive
ResponsivenessNo issues