Connect the Docs MCP
Agentic Scraper hosts a free, read-only documentation MCP server:
https://docs.agenticscraper.com/mcpIt lets compatible AI clients search the published guides, retrieve an exact operation from the live OpenAPI specification, and read full pages without leaving the conversation. It requires no authentication.
This is a documentation server, not the MCP Market runtime. It cannot run agents, invoke marketplace tools, change account data, or create billable API usage.
Connect from Codex
Add the Streamable HTTP server with the Codex CLI:
codex mcp add agentic-scraper-docs \ --url https://docs.agenticscraper.com/mcpConfirm the connection:
codex mcp listCodex CLI and Codex editor surfaces use the Codex MCP configuration. You can
also add this manually to ~/.codex/config.toml:
[mcp_servers.agentic-scraper-docs]url = "https://docs.agenticscraper.com/mcp"Restart the client after changing the configuration.
Connect from Claude Code
claude mcp add --transport http \ agentic-scraper-docs \ https://docs.agenticscraper.com/mcpConnect from Cursor, Windsurf, or VS Code
Add a remote MCP server to your editor’s MCP configuration:
{ "mcpServers": { "agentic-scraper-docs": { "url": "https://docs.agenticscraper.com/mcp" } }}The exact settings screen varies by editor version. Choose Streamable HTTP when the client asks for a transport and do not add an API key header.
Connect from ChatGPT
ChatGPT custom apps are configured separately from Codex’s local configuration.
If developer mode is available for your workspace, open Settings or Workspace
settings → Apps → Create, enter https://docs.agenticscraper.com/mcp, choose
no authentication, scan the tools, and create the app. Availability and the
exact settings location depend on the ChatGPT workspace plan and admin policy.
Connect from Gemini CLI
Add this entry under mcpServers in ~/.gemini/settings.json:
{ "mcpServers": { "agentic-scraper-docs": { "httpUrl": "https://docs.agenticscraper.com/mcp" } }}Connect from Claude Desktop and other clients
Use the same Streamable HTTP URL. For clients that use the common
mcpServers JSON shape:
{ "mcpServers": { "agentic-scraper-docs": { "url": "https://docs.agenticscraper.com/mcp" } }}No API key, OAuth flow, custom header, or additional parameter is required.
Available tools
The server exposes four read-only tools:
search_documentationsearches guides and API operation summaries.get_api_operationreturns an operation byoperationId, or by HTTP method and OpenAPI path.get_documentreads a full guide or OpenAPI resource returned by search.list_documentationlists guides and reports the live operation count.
Example questions
- “How do I authenticate a REST API request?”
- “Show the exact request schema for creating a one-off agent run.”
- “How does provider event charging handle idempotency?”
- “Should I use the REST API, the Docs MCP, or an MCP Market tool?”
Docs MCP versus REST API
| Capability | Docs MCP | REST API |
|---|---|---|
| Best for | Answering integration questions | Running product operations |
| Protocol | MCP Streamable HTTP | HTTPS JSON |
| Endpoint | https://docs.agenticscraper.com/mcp |
https://api.agenticscraper.com/api/v1 |
| Authentication | None | X-API-Key |
| Mutates data | Never | Depending on the operation |
| Billable usage | No | Depending on the operation |
See REST API vs MCP for the complete comparison.