RelayPlane
OfficialRelayPlane is an MCP server that reduces AI context usage by 90%+ in multi-step workflows by keeping intermediate results in the workflow engine instead of passing them through your context window.
Core Capabilities:
Execute single AI prompts - Test individual model calls across multiple providers (OpenAI, Anthropic, Google, xAI) with structured output support and cost tracking
Run multi-step AI workflows - Orchestrate complex pipelines where steps reference previous outputs using template variables (
{{input.field}},{{steps.stepName.output}}), dramatically reducing context usageValidate workflow structure - Check DAG structure, dependencies, and model formats before execution without making API calls (free)
Browse available AI models - View models from OpenAI (GPT-5.2, o3-mini), Anthropic (Claude Opus/Sonnet/Haiku 4.5), Google (Gemini 3), and xAI (Grok) with capabilities and pricing
Access pre-built workflow templates - Use production-ready patterns for invoice processing (97% context reduction), content pipelines (90%), and lead enrichment (80%)
Track execution history - Review recent runs with full details including step outputs, token usage, costs, and trace URLs for debugging
Integrate MCP tools - Call other MCP server tools within workflows using
server:toolformatBudget protection - Configure daily spending limits ($5 default), per-call caps ($0.50 default), and rate limiting (100 calls/hour default)
Structured outputs - Define JSON schemas to ensure consistent, validated data formats
Key Benefits: BYOK (Bring Your Own Keys) with no markup or RelayPlane fees, multi-provider support in the same workflow, and massive token savings by keeping intermediate results server-side.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RelayPlanecreate a workflow to summarize this article and generate social media posts from it"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
RelayPlane MCP Server
Reduce AI context usage by 90%+ in multi-step workflows
RelayPlane keeps intermediate results in the workflow engine instead of passing them through your context window—saving tokens and reducing costs.
Table of Contents
Related MCP server: Shared Memory MCP Server
Quick Start
1. Install with API Keys (Recommended)
claude mcp add relayplane \
-e OPENAI_API_KEY=sk-... \
-e ANTHROPIC_API_KEY=sk-ant-... \
-- npx @relayplane/mcp-server2. Restart Claude Code
Important: You must fully restart Claude Code after adding the MCP server. The /mcp command only reconnects—it doesn't reload environment variables.
3. Test the Connection
Ask Claude: "Use relay_models_list to show configured providers"
Models should show configured: true for providers with valid API keys.
Installation Options
Option A: Inline API Keys (Simplest)
claude mcp add relayplane \
-e OPENAI_API_KEY=sk-proj-... \
-e ANTHROPIC_API_KEY=sk-ant-... \
-e GOOGLE_API_KEY=AIza... \
-e XAI_API_KEY=xai-... \
-- npx @relayplane/mcp-serverOption B: Shell Environment Variables
First, add to your shell profile (~/.zshrc or ~/.bashrc):
export OPENAI_API_KEY=sk-proj-...
export ANTHROPIC_API_KEY=sk-ant-...
export GOOGLE_API_KEY=AIza...
export XAI_API_KEY=xai-...Then source and install:
source ~/.zshrc
claude mcp add relayplane -- npx @relayplane/mcp-serverOption C: Manual Configuration
Edit ~/.claude.json directly:
{
"projects": {
"/your/project/path": {
"mcpServers": {
"relayplane": {
"type": "stdio",
"command": "npx",
"args": ["@relayplane/mcp-server"],
"env": {
"OPENAI_API_KEY": "sk-proj-...",
"ANTHROPIC_API_KEY": "sk-ant-...",
"GOOGLE_API_KEY": "AIza...",
"XAI_API_KEY": "xai-..."
}
}
}
}
}
}Warning: The
envfield must contain actual API keys, not variable references like${OPENAI_API_KEY}. Variable substitution is not supported in the MCP config file.
Model IDs
Important: Always check https://relayplane.com/docs/providers for the latest model IDs. The
relay_models_listtool may return outdated information.
OpenAI — prefix: openai:
Model ID | Best For |
gpt-5.2 | Latest flagship, 1M context |
gpt-5-mini | Cost-efficient, fast |
gpt-5-nano | Ultra-fast, minimal cost |
o3-mini | Reasoning tasks |
Anthropic — prefix: anthropic:
Model ID | Best For |
claude-opus-4-5-20251101 | Most intelligent, complex tasks |
claude-sonnet-4-5-20250929 | Best coding, strongest for agents |
claude-haiku-4-5-20251001 | Fast, high-volume tasks |
claude-3-5-haiku-20241022 | Fast, affordable (legacy) |
Google — prefix: google:
Model ID | Best For |
gemini-3-pro | Most powerful multimodal |
gemini-3-flash | Fast multimodal |
gemini-2.5-flash | Cost-effective |
xAI — prefix: xai:
Model ID | Best For |
grok-beta | Latest flagship, 256K context |
Example Usage
{
"name": "my-step",
"model": "openai:gpt-5.2",
"prompt": "Analyze this data..."
}Available Tools
Tool | Purpose | Cost |
relay_run | Single prompt execution | Per-token |
relay_workflow_run | Multi-step orchestration | Per-token |
relay_workflow_validate | Validate DAG structure | Free |
relay_skills_list | List pre-built patterns | Free |
relay_models_list | List available models | Free |
relay_runs_list | View recent runs | Free |
relay_run_get | Get run details | Free |
Budget Protection
Default safeguards (customizable via CLI flags):
Limit | Default | Flag |
Daily spending | $5.00 | --max-daily-cost |
Per-call cost | $0.50 | --max-single-call-cost |
Hourly requests | 100 | --max-calls-per-hour |
RelayPlane is BYOK (Bring Your Own Keys)—we don't charge for API usage. Costs reflect only your provider bills.
Pre-built Skills
Use relay_skills_list to see available workflow templates:
Skill | Context Reduction | Use Case |
invoice-processor | 97% | Extract, validate, summarize invoices |
content-pipeline | 90% | Generate and refine content |
lead-enrichment | 80% | Enrich contact data |
Configuration
Persistent Config File
Create ~/.relayplane/mcp-config.json:
{
"codegenOutDir": "./servers/relayplane",
"maxDailyCostUsd": 10.00,
"maxSingleCallCostUsd": 1.00,
"maxCallsPerHour": 200
}Note: API keys should be passed via environment variables or the Claude Code MCP
envfield—not stored in this config file.
Troubleshooting
"Provider not configured" Error
Provider "openai" (step "extract") is not configured.
Set OPENAI_API_KEY environment variable.Causes:
API key not passed to MCP server
Claude Code not restarted after config change
Solutions:
Check your MCP config in
~/.claude.json:
"relayplane": {
"env": {
"OPENAI_API_KEY": "sk-..." // Must be actual key, not ${VAR}
}
}Fully restart Claude Code (exit with
Ctrl+C, relaunch)Verify configuration: Ask Claude: "Use relay_models_list and check which show configured: true"
Model Not Found (404 Error)
Anthropic API error: 404 - model: claude-3-5-sonnet-20241022Cause: Model ID is outdated or incorrect.
Solution: Check current model IDs at: https://relayplane.com/docs/providers
Common fixes:
Use
claude-sonnet-4-5-20250929for latest Claude SonnetUse
gpt-5.2for latest OpenAI flagship model
Config Changes Not Taking Effect
Cause: /mcp reconnect doesn't reload environment variables.
Solution: Fully restart Claude Code:
Exit with
Ctrl+CRelaunch
claudeRun
/mcpto verify connection
Workflow Validation Passes But Execution Fails
Cause: relay_workflow_validate only checks DAG structure, not:
API key validity
Model availability
Schema compatibility
Solution: Test with a simple relay_run first:
Use relay_run with model "openai:gpt-5.2" and prompt "Say hello"Quick Test
After setup, verify everything works:
Use relay_workflow_run to create an invoice processor:
- Step 1 (extract): Use openai:gpt-5.2 to extract vendor, total from invoice
- Step 2 (validate): Use anthropic:claude-haiku-4-5-20251001 to verify math
Input: "Invoice from Acme Corp, Total: $500"Expected: Both steps complete successfully with structured output.
Support
Documentation: https://relayplane.com/docs
Model IDs: https://relayplane.com/docs/providers
License
MIT
Available Tools
7 toolsrelay_models_listA
List available AI models with capabilities and pricing. Use to check valid model IDs before testing. Cost shows provider pricing (OpenAI/Anthropic) - RelayPlane is BYOK, we don't charge for API usage.
| Name | Required | Description | Default |
|---|---|---|---|
| provider | No | Filter by provider (optional) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses key behavioral traits: the tool returns pricing information and clarifies RelayPlane's BYOK (Bring Your Own Key) model with no API usage charges. However, it doesn't mention response format, pagination, or error behavior.
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 sentences with zero waste: the first states purpose and key attributes, the second clarifies pricing context. It's front-loaded with essential information and appropriately 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?
For a simple list tool with one optional parameter and no output schema, the description is reasonably complete. It covers purpose, usage context, and pricing model, though it could benefit from mentioning response structure or example output.
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 the optional 'provider' parameter with its enum values. The description doesn't add any parameter-specific details beyond what the schema provides, meeting the baseline for high schema coverage.
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 verb ('List') and resource ('available AI models') with specific attributes ('capabilities and pricing'). It distinguishes from siblings by focusing on model metadata rather than execution or workflow 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?
It provides explicit context for when to use ('to check valid model IDs before testing'), which helps guide selection. However, it doesn't mention when NOT to use this tool or name specific alternatives among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
relay_runA
Execute a single AI model call. Useful for testing prompts before building full workflows. Returns output, token usage, estimated provider cost, and trace URL. Note: Cost tracks your provider bill (OpenAI/Anthropic), not RelayPlane fees - we're BYOK.
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Model in provider:model format (e.g., 'openai:gpt-4o', 'anthropic:claude-3-5-sonnet-20241022') | |
| prompt | Yes | The user prompt to send | |
| systemPrompt | No | Optional system prompt | |
| schema | No | Optional JSON schema for structured output |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key behaviors: it returns output, token usage, estimated provider cost, and trace URL, and clarifies cost tracking (provider bills, not RelayPlane fees). However, it doesn't mention rate limits, authentication needs, or error handling, leaving some gaps.
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 front-loaded with the core purpose, followed by usage context and important behavioral notes. Every sentence adds value: the first states the action, the second provides usage guidance, and the third clarifies cost details. It's concise with zero wasted 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 no annotations and no output schema, the description does well to cover purpose, usage, and key behavioral traits like return values and cost tracking. However, it lacks details on error cases, response format beyond listed items, or performance characteristics, which could be useful for a tool with 4 parameters and no structured output.
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 all parameters thoroughly. The description adds no additional parameter semantics beyond what's in the schema, such as examples or constraints. Baseline 3 is appropriate since the schema does the heavy lifting.
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 specific action ('Execute a single AI model call') and resource ('AI model'), distinguishing it from sibling tools like relay_models_list (list models) and relay_workflow_run (execute full workflows). It explicitly mentions testing prompts before building workflows, which helps differentiate its use case.
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 provides explicit guidance on when to use this tool ('Useful for testing prompts before building full workflows'), implying alternatives like relay_workflow_run for production workflows. It also notes cost tracking specifics, helping users understand appropriate contexts for usage versus other tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
relay_run_getB
Get full details of a specific run including all step outputs and trace URL.
| Name | Required | Description | Default |
|---|---|---|---|
| runId | Yes | The run ID to retrieve |
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 of behavioral disclosure. It mentions that the tool retrieves 'full details' including 'step outputs and trace URL', which adds some context about what information is returned. However, it doesn't describe other behavioral traits, such as whether this is a read-only operation (implied by 'Get' but not stated), error handling, rate limits, or authentication needs. For a tool with zero annotation coverage, this leaves significant gaps.
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, efficient sentence that front-loads the core purpose ('Get full details of a specific run') and adds specific inclusions ('including all step outputs and trace URL'). There is no wasted text, and every word earns its place by clarifying the tool's scope and output.
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 tool's moderate complexity (retrieving detailed run data) and lack of annotations and output schema, the description is partially complete. It specifies what details are included (step outputs, trace URL), which helps, but doesn't cover other aspects like return format, error cases, or how it differs from siblings. Without an output schema, more detail on the response would be beneficial, but the description provides a basic understanding.
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 has 100% description coverage, with the single parameter 'runId' documented as 'The run ID to retrieve'. The description doesn't add any meaning beyond this, as it doesn't explain where to obtain the run ID or its format. With high schema coverage, the baseline is 3, and the description doesn't compensate with extra param details, so it meets the minimum viable level.
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 purpose: 'Get full details of a specific run including all step outputs and trace URL.' It specifies the verb ('Get'), resource ('run'), and scope ('full details'), distinguishing it from siblings like 'relay_runs_list' (which likely lists runs) and 'relay_run' (which might be more basic). However, it doesn't explicitly differentiate from 'relay_workflow_run', which could be a similar tool for workflows.
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 provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, such as needing a run ID from another tool, or compare it to siblings like 'relay_run' or 'relay_workflow_run'. The context is implied (use when you have a run ID and want detailed info), but no explicit usage rules or exclusions are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
relay_runs_listC
List recent workflow runs for debugging and reference.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of runs to return (default: 10, max: 50) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the tool is for listing runs 'for debugging and reference', which implies read-only behavior, but doesn't specify details like pagination, sorting, error handling, or authentication requirements. This leaves significant gaps for a tool that likely interacts with workflow 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 a single, efficient sentence that states the core purpose upfront. It avoids unnecessary words, though it could be slightly more structured by separating purpose from usage 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?
Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what the output looks like (e.g., list format, fields included), how 'recent' is defined, or other behavioral aspects needed for effective use. For a tool with potential complexity in workflow runs, this is insufficient.
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 has 100% description coverage, with the 'limit' parameter well-documented. The description doesn't add any parameter-specific information beyond what the schema provides, so it meets the baseline score of 3 for adequate but 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 verb ('List') and resource ('recent workflow runs'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'relay_run_get' or 'relay_workflow_run', which likely have related but distinct purposes.
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 provides minimal guidance with 'for debugging and reference', but it doesn't specify when to use this tool versus alternatives like 'relay_run_get' or 'relay_workflow_run'. No explicit when-not-to-use or prerequisite information is included.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
relay_skills_listA
List available pre-built workflow skills. Skills are reusable patterns for common tasks (invoice processing, content pipelines, etc.). Returns skill names, descriptions, context reduction metrics, and usage examples.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Optional: filter by category |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that this is a read operation (list/returns) and describes the return format (skill names, descriptions, metrics, examples), which is helpful. However, it doesn't mention potential limitations like pagination, rate limits, authentication requirements, or whether the list is comprehensive versus filtered by default.
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 that efficiently convey purpose, resource definition, and return details without redundancy. Each sentence adds value: the first defines the action and resource, the second specifies the return format. It's front-loaded and wastes no 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 tool's low complexity (one optional parameter, no output schema, no annotations), the description is reasonably complete. It explains what skills are and what data is returned, which compensates for the lack of output schema. However, for a list operation, it could benefit from mentioning potential behavioral aspects like ordering or default behavior when no category is specified.
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 fully documents the single optional parameter 'category' with its enum values. The description doesn't add any parameter-specific information beyond what's in the schema, but with only one parameter and high schema coverage, the baseline is 3. The description's explanation of skills provides context that indirectly supports understanding the category filter, warranting a slight bump to 4.
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 verb ('List') and resource ('available pre-built workflow skills'), defines what skills are ('reusable patterns for common tasks'), and distinguishes this from siblings like relay_models_list or relay_runs_list by focusing specifically on skills rather than models or runs. It provides specific examples of skill types (invoice processing, content pipelines).
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 context by explaining what skills are and what information is returned, but it doesn't explicitly state when to use this tool versus alternatives like relay_models_list or relay_workflow_validate. There's no guidance on prerequisites or when-not-to-use scenarios, leaving usage decisions to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
relay_workflow_runA
Execute a multi-step AI workflow. Intermediate results stay in the workflow engine (not your context), providing 90%+ context reduction on complex pipelines. Use for any task requiring multiple model calls or tool integrations. Cost tracks your provider bills, not RelayPlane fees - we're BYOK.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Workflow name for tracing | |
| steps | Yes | Workflow steps | |
| input | Yes | Input data (accessible via {{input.field}}) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key behaviors: intermediate results stay in the workflow engine (not the agent's context), provides 90%+ context reduction, and clarifies cost tracking (provider bills, not RelayPlane fees). However, it doesn't mention error handling, timeouts, or output format details, leaving some behavioral aspects unclear.
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 appropriately sized and front-loaded, with the core purpose in the first sentence. All sentences add value: context reduction benefits, usage guidelines, and cost clarification. However, the cost explanation could be slightly more concise, and the structure might benefit from clearer separation of key points.
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 complexity (multi-step workflows with nested objects) and no annotations or output schema, the description does well to cover purpose, usage, and key behavioral traits. It addresses context reduction and cost tracking, which are critical for this type of tool. However, without an output schema, it doesn't describe return values or error formats, leaving some gaps in completeness.
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 all parameters thoroughly. The description adds minimal parameter semantics beyond the schema—it mentions 'multi-step AI workflow' which aligns with the steps parameter, and references input accessibility via {{input.field}}, but doesn't provide additional syntax or usage details. Baseline 3 is appropriate when the schema does most of the work.
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 purpose: 'Execute a multi-step AI workflow' with specific details about intermediate results staying in the workflow engine and providing 90%+ context reduction. It distinguishes from siblings by emphasizing multi-step workflows requiring multiple model calls or tool integrations, unlike simpler run or list 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 description provides explicit usage guidance: 'Use for any task requiring multiple model calls or tool integrations.' This clearly indicates when to use this tool versus simpler alternatives like relay_run (likely for single-step execution) or list tools. It also clarifies cost implications, helping users decide based on billing considerations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
relay_workflow_validateA
Validate workflow structure without making any LLM calls (free). Checks DAG structure (no cycles), dependency references, and model ID format. Does NOT validate schema compatibility between steps or prompt effectiveness - use relay_workflow_run for full validation.
| Name | Required | Description | Default |
|---|---|---|---|
| steps | Yes | Steps to validate (same format as relay_workflow_run) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key traits: it's a validation-only operation ('validate workflow structure'), has no cost ('free'), avoids LLM calls, and specifies what checks are performed and omitted. However, it doesn't mention error handling, response format, or performance characteristics, leaving some gaps.
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 front-loaded with the core purpose, followed by specific checks and exclusions, all in two efficient sentences with zero wasted words. Each sentence earns its place by clarifying scope and usage.
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 tool's complexity (validation with specific checks), no annotations, and no output schema, the description is largely complete for guiding usage. It covers purpose, limitations, and alternatives well. However, it lacks details on output format or error responses, which could be useful for a validation 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?
Schema description coverage is 100%, with the single parameter 'steps' well-documented in the schema. The description adds minimal value beyond the schema by referencing 'same format as relay_workflow_run', which provides context but no additional semantic details. This meets the baseline of 3 for high schema coverage.
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 specific action ('validate workflow structure') and resource ('workflow'), distinguishing it from siblings by explicitly contrasting with 'relay_workflow_run' for full validation. It specifies what is checked (DAG structure, dependency references, model ID format) and what is not (schema compatibility, prompt effectiveness), providing precise scope.
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 explicitly states when to use this tool ('validate workflow structure without making any LLM calls (free)') and when not to ('Does NOT validate schema compatibility between steps or prompt effectiveness'), with a clear alternative named ('use relay_workflow_run for full validation'). This provides complete guidance on tool selection.
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.
7 tool updates
- First observed
relay_models_list - First observed
relay_run - First observed
relay_run_get - First observed
relay_runs_list - First observed
relay_skills_list - First observed
relay_workflow_run - First observed
relay_workflow_validate
TDQS
Each tool has a clearly distinct purpose with no overlap. For example, relay_models_list lists models, relay_run executes a single call, relay_workflow_run executes multi-step workflows, and relay_workflow_validate validates structure without execution. The descriptions reinforce these boundaries, making misselection unlikely.
All tools follow a consistent 'relay_' prefix with snake_case naming, using clear verb-noun combinations like list, run, get, and validate. This predictable pattern enhances readability and agent usability across the entire set.
With 7 tools, the set is well-scoped for the AI workflow domain, covering core operations from listing resources to executing and validating runs. Each tool earns its place without feeling excessive or insufficient for the server's purpose.
The tool surface provides strong coverage for AI workflow management, including listing, executing, retrieving, and validating runs and models. A minor gap exists in direct update or deletion operations for workflows or runs, but agents can work around this by re-executing or managing externally.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
SaaS intelligence for AI agents. 5 unified tools cover 1,000+ services with 91-96% token savings.
AI routing, memory, guardrails, and governance. Routes across Claude, GPT, Gemini.
Universal memory for AI agents and tools. Save, organize and search context anywhere.
Durable agent-to-agent handoffs and shared scratchpad for multi-agent workflows.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceFacilitates enhanced interaction with large language models (LLMs) by providing intelligent context management, tool integration, and multi-provider AI model coordination for efficient AI-driven workflows.MIT
- AlicenseBqualityCmaintenanceProvides a shared context layer for AI agent teams to improve token efficiency through context deduplication and incremental state sharing. It enables multiple agents to coordinate tasks, share real-time discoveries, and manage dependencies while significantly reducing redundant data transmission.1507MIT
- FlicenseAqualityDmaintenanceProvides sandboxed code execution and data processing for CSVs and logs to achieve over 95% token savings. It enables secure multi-language execution and progressive tool disclosure to optimize LLM context usage.7-
- AlicenseCqualityAmaintenanceA vendor-agnostic cognitive persistence layer for AI agents. Eliminate the "repetition tax" by transporting your context, preferences, and history across sessions. Features an auto-adaptation engine that syncs global instructions to ensure operational cohesion and optimize token usage across any LLM or multi-agent workflow.386Apache 2.0
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RelayPlane/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server