Skip to main content
If you want your coding agent to answer Phaseo questions using the live docs instead of stale training data, connect the Phaseo documentation MCP server. This MCP server is read-only. It helps agents search the docs and read full pages while they work.

Server URL

https://phaseo.app/docs/mcp

What it gives you

  • live search across the Phaseo docs
  • full page content when an agent needs more detail
  • access to the hosted skill.md capability summary

Codex

Add the server:
codex mcp add phaseoDocs --url https://phaseo.app/docs/mcp
Check it:
codex mcp list

Claude Code

Add the server for the current project:
claude mcp add --transport http phaseo-docs https://phaseo.app/docs/mcp
Make it available across all projects:
claude mcp add --transport http --scope user phaseo-docs https://phaseo.app/docs/mcp
Check it:
claude mcp list

Cursor

Use the contextual menu in the docs to install the MCP server in Cursor, or add it manually:
{
  "mcpServers": {
    "phaseoDocs": {
      "url": "https://phaseo.app/docs/mcp"
    }
  }
}

OpenCode

Add the Phaseo docs server to opencode.json:
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "phaseoDocs": {
      "type": "remote",
      "url": "https://phaseo.app/docs/mcp"
    }
  }
}

VS Code

Use the contextual menu in the docs to install the MCP server in VS Code, or add it manually:
{
  "servers": {
    "phaseoDocs": {
      "type": "http",
      "url": "https://phaseo.app/docs/mcp"
    }
  }
}

When to use this

Use Docs MCP when you want your agent to:
  • look up the latest request shape before writing code
  • confirm endpoint support for a model or provider
  • check routing, presets, guardrails, or async-job behavior
  • pull examples from the docs while staying in your editor

Good prompts

  • Look up the Responses request format in the Phaseo docs and give me a minimal example.
  • Use the Phaseo docs MCP server to check how provider.sort works before you change this request.
  • Find the guardrails docs in Phaseo and summarize the parts that affect provider routing.
Last modified on July 9, 2026