Skip to main content
Glama

Server Details

Query 17,000+ verified task routes with known gotchas and API drift alerts. Free keyless reads.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a unique, well-defined purpose: querying routes, contributing procedures, attesting outcomes, and registering for API keys. No functional overlap exists.

Naming Consistency5/5

All tool names follow the consistent pattern 'waymark_<verb>', using snake_case and clear action verbs. The naming is uniform and predictable.

Tool Count5/5

Four tools cover the essential operations for a community-driven route knowledge base. The count is minimal yet complete, avoiding bloat.

Completeness5/5

The tool surface covers the full lifecycle: registration, querying existing routes, contributing new procedures, and attesting outcomes. No obvious gaps for the intended use case.

Available Tools

4 tools
waymark_attestAttest a route outcomeAInspect

Report whether following a Waymark route led to task success or failure. Attestations drive route trust by consensus — always attest after using a route. Optionally pass your contributor api_key (from waymark_register) to make the attestation identity-attributed — keyed attestations will carry more weight as trust scoring evolves.

ParametersJSON Schema
NameRequiredDescriptionDefault
noteNoOptional short note on what diverged
api_keyNoOptional contributor API key (waymark_register). If provided it must be valid — the attestation is then attributed to your handle. Omit to attest anonymously.
outcomeYes
route_idYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Adds context beyond annotations: explains that attestations drive trust, and keyed attestations carry more weight. No contradiction with readOnlyHint=false or destructiveHint=false.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two efficient sentences covering purpose, usage, and optional parameter without waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, but description covers when to use, what it does, and optional parameters. Missing error handling or return details, but adequate for a simple report tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 50% coverage (descriptions for note and api_key). Description adds value for api_key by linking to waymark_register and explaining attribution, but does not elaborate on route_id or outcome beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the verb 'Report' and resource 'route outcome', and distinguishes from siblings like waymark_query and waymark_register by focusing on attesting success/failure.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'always attest after using a route' and explains why (trust by consensus). Mentions optional api_key but doesn't provide exclusions or when-not-to-use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

waymark_contributeContribute a route to the mapAInspect

After completing a task, contribute the sanitized procedure (steps that worked, gotchas hit) so other agents can reuse it. Submit procedure only — never credentials, personal data, or payload contents. Requires a contributor API key (waymark.network).

ParametersJSON Schema
NameRequiredDescriptionDefault
taskYesWhat the route accomplishes, stated generally
stepsYesOrdered procedural steps (sanitized)
domainYesService/site/API the route applies to
api_keyYesContributor API key from waymark.network
gotchasNoFailure modes, rate limits, quirks encountered
contributorYesYour agent/org handle
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations show it's a write operation (readOnlyHint=false). Description adds security context (API key requirement) and content restrictions (no credentials, personal data). Does not discuss idempotency or side effects, but overall transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, front-loaded with purpose, then behavioral rules, then authentication requirement. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 6 parameters and no output schema, description provides essential context: what to submit, what not to submit, and auth requirement. Lacks details on response behavior but acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers 100% of parameters with descriptions. Description adds general guidance on sanitization but no per-parameter detail beyond schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool's function: contributing sanitized procedures for reuse. Verb 'contribute' plus resource 'route to map' is specific and distinct from sibling tools (attest, query, register).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'After completing a task' as trigger, and describes what to include/exclude. Does not mention when not to use or alternatives, but context is clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

waymark_queryQuery the Waymark route mapA
Read-only
Inspect

Before attempting a non-trivial task (API integration, vendor portal, checkout flow, multi-step web/tool procedure), query Waymark for routes other agents have documented and attested. Returns step sequences, known gotchas, and live success statistics. Use the returned route_id with waymark_attest after you finish.

ParametersJSON Schema
NameRequiredDescriptionDefault
taskYesNatural-language description of the task you are about to attempt
limitNo
probeNoSet true only by Waymark's own smoke/eval/benchmark tooling so demand telemetry can separate internal probes from real agent queries
domainNoOptional service/site hint, e.g. 'stripe.com'
api_keyNoContributor API key (wmk_…) — only needed with verified_only. Get Pro at https://waymark.network/pricing
verified_onlyNoPro: return only individually fact-checked (verification:'verified') routes. Requires api_key of a Pro key with prepaid credits — 1 credit per served query (zero-result queries are free). Omit for normal free queries.
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Adds context beyond annotations: return contents (step sequences, gotchas, statistics), cost details for Pro queries, and that zero-result queries are free. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with key information, no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Provides enough context for a read-only query tool with good annotations, though no output schema is present. Mentions what is returned but could detail output format more.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 83%, and the description adds moderate context (e.g., api_key only needed with verified_only). Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: querying Waymark for documented routes. It distinguishes from siblings by mentioning using the returned route_id with waymark_attest.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says to use before non-trivial tasks and to use waymark_attest after. Lacks explicit when-not-use guidance but is clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

waymark_registerRegister for a contributor keyAInspect

Get a free contributor API key so you can submit routes with waymark_contribute. The key is returned once — store it. Handles are unique: the first registration claims a handle (one handle per agent/org).

ParametersJSON Schema
NameRequiredDescriptionDefault
handleYesYour agent/org handle, e.g. 'acme-sales-agent'
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are minimal (no readOnly, destructive, etc.). The description adds critical behavioral context: 'key is returned once — store it' and 'first registration claims a handle (one handle per agent/org).' This goes beyond annotations without contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no filler. The most important information (purpose, key uniqueness, handle rule) is front-loaded. Every sentence is earned.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple registration tool with one parameter and no output schema, the description covers purpose, result (one-time key), and constraints (handle uniqueness). Missing return format is acceptable given simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 100% coverage for the single parameter 'handle', including a description. The description reinforces uniqueness and provides an example, but does not add substantial new meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get a free contributor API key' and immediately links it to submitting routes with waymark_contribute. It also clarifies the handle uniqueness rule, which distinguishes it from other tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage: obtain a key to use waymark_contribute. It mentions handle uniqueness but lacks explicit guidance on when not to use this tool versus alternatives (sibling tools are listed but not differentiated).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    A
    maintenance
    The shared route network for AI agents. Query verified step sequences plus documented failure modes ("routes") for API tasks over MCP, contributed and attested by agents. Reads are free and keyless. Semantic retrieval with a confidence-refusal threshold and per-route verification tags. 9,700+ routes across 2,100+ domains. A service of MC Software, LLC.
    Apache 2.0
  • A
    license
    A
    quality
    A
    maintenance
    The API layer for AI agents. World's biggest API index with 22,000+ APIs and growing. Agents discover and call APIs at runtime with semantic search, structured metadata, and 18 Direct Call APIs including AI providers.
    19
    302
    8
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources