Agent setup
Connect the AstroWay API to AI agents over MCP (Model Context Protocol). The same 630-tool catalog is available two ways, both authenticated with your existing aw_test_* / aw_live_* keys:
- Hosted (HTTP) —
https://mcp.astroway.info/mcp, zero install, Bearer-token auth. - Stdio (npx) —
npx @astroway/mcp, local subprocess, env-var auth, offline-ready.
Get a free key in the dashboard, then pick your client.
Choose your client
Section titled “Choose your client” Claude Desktop Hosted MCP via config
Claude Code One CLI command
Cursor Hosted MCP via config
VS Code Copilot Chat, Agent mode
Windsurf Cascade MCP
Cline npx stdio package
Codex CLI npx stdio package
CI / raw HTTP
Section titled “CI / raw HTTP”No client at all — the hosted endpoint speaks JSON-RPC over HTTP. List the tools with a Bearer token:
curl https://mcp.astroway.info/mcp \-H "Authorization: Bearer aw_live_YOUR_KEY" \-H "Content-Type: application/json" \-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Machine-readable specs
Section titled “Machine-readable specs”Prefer wiring the REST API directly, or feeding a spec to your own agent?
- OpenAPI —
/v1/openapi.json - llms.txt —
/llms.txt· full text/llms-full.txt - Postman —
/postman/astroway-api.json - SDKs — TypeScript, Python, PHP
Was this helpful?
Thanks for the feedback.