Skip to content

Commit 33ad57c

Browse files
committed
docs: use short MCP URLs (/mcp/astrology) in examples
MCP servers are now reachable at /mcp/{short-slug} without the -api suffix (e.g. /mcp/astrology, /mcp/tarot, /mcp/vedic-astrology). The legacy -api paths stay live indefinitely so existing MCP client configs are not broken.
1 parent 5b70240 commit 33ad57c

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

AGENTS.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,12 +220,12 @@ DST matters. If the birth date falls inside a daylight-saving window, use the su
220220

221221
## MCP equivalents
222222

223-
Every method has a matching MCP tool. The remote MCP server per domain is at `https://roxyapi.com/mcp/{domain}-api` (Streamable HTTP, no stdio / no self-hosting). Tool names follow `{method}_{path_snake_case}`, for example:
223+
Every method has a matching MCP tool. The remote MCP server per domain is at `https://roxyapi.com/mcp/{domain}` (Streamable HTTP, no stdio / no self-hosting). Tool names follow `{method}_{path_snake_case}`, for example:
224224

225-
- `POST /astrology/natal-chart` -> `post_astrology_natal_chart` on `/mcp/astrology-api`
226-
- `GET /astrology/horoscope/{sign}/daily` -> `get_astrology_horoscope_sign_daily` on `/mcp/astrology-api`
227-
- `POST /vedic-astrology/birth-chart` -> `post_vedic_astrology_birth_chart` on `/mcp/vedic-astrology-api`
228-
- `POST /tarot/spreads/celtic-cross` -> `post_tarot_spreads_celtic_cross` on `/mcp/tarot-api`
225+
- `POST /astrology/natal-chart` -> `post_astrology_natal_chart` on `/mcp/astrology`
226+
- `GET /astrology/horoscope/{sign}/daily` -> `get_astrology_horoscope_sign_daily` on `/mcp/astrology`
227+
- `POST /vedic-astrology/birth-chart` -> `post_vedic_astrology_birth_chart` on `/mcp/vedic-astrology`
228+
- `POST /tarot/spreads/celtic-cross` -> `post_tarot_spreads_celtic_cross` on `/mcp/tarot`
229229

230230
Use the SDK for typed Python apps. Use MCP for AI agents (Claude Desktop, Cursor MCP, OpenAI agents) where the agent selects tools based on user intent.
231231

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ with create_roxy("your-api-key") as roxy:
297297

298298
This package ships with `AGENTS.md` bundled alongside the source so AI coding agents can read the SDK patterns, common tasks, and gotchas directly.
299299

300-
Also available: [remote MCP server](https://roxyapi.com/docs/mcp) per domain at `https://roxyapi.com/mcp/{domain}-api` (Streamable HTTP, no stdio / no self-hosting) for agents that speak the Model Context Protocol.
300+
Also available: [remote MCP server](https://roxyapi.com/docs/mcp) per domain at `https://roxyapi.com/mcp/{domain}` (Streamable HTTP, no stdio / no self-hosting) for agents that speak the Model Context Protocol.
301301

302302
## Links
303303

0 commit comments

Comments
 (0)