@getdory/mcp is the lightweight stdio bridge for connecting local MCP clients to a hosted Dory Web MCP endpoint.
Most users should start with the full Dory MCP Guide. Use @getdory/cli for standalone MCP servers, token management, direct Dory Actions, local runtime services, and self-hosted storage. This package remains a small hosted-bridge entrypoint.
| Use case | Recommended package |
|---|---|
| Hosted Dory Web endpoint with local stdio bridge | @getdory/mcp or @getdory/cli mcp bridge |
| Standalone local MCP server | @getdory/cli |
| HTTP headless runtime | @getdory/cli |
| Token management | @getdory/cli |
| Direct Dory Action execution | @getdory/cli |
Authorize once in the browser:
npx -y @getdory/mcp login --url https://your-dory-hostRun the bridge:
npx -y @getdory/mcp --url https://your-dory-hostThe bridge stores a personal MCP token locally and forwards stdio MCP traffic to:
https://your-dory-host/api/mcp
codex mcp add dory-hosted -- npx -y @getdory/mcp --url https://your-dory-host
codex mcp listclaude mcp add dory-hosted -- npx -y @getdory/mcp --url https://your-dory-host
claude mcp listThe same hosted bridge workflow is available through @getdory/cli:
npx -y @getdory/cli mcp login --url https://your-dory-host
npx -y @getdory/cli mcp status --url https://your-dory-host
npx -y @getdory/cli mcp bridge --url https://your-dory-host
npx -y @getdory/cli mcp logout --url https://your-dory-hostUse @getdory/cli when you also need standalone/headless MCP, runtime service management, or Dory Actions.
DORY_MCP_URL Default Dory origin or /api/mcp endpoint
DORY_MCP_TOKEN Advanced bearer token override
DORY_MCP_CONFIG Credential file path
- MCP setup guide:
docs/mcp.md - CLI reference:
packages/cli/README.md