Skip to content

Connect the Docs MCP

Agentic Scraper hosts a free, read-only documentation MCP server:

https://docs.agenticscraper.com/mcp

It 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:

Terminal window
codex mcp add agentic-scraper-docs \
--url https://docs.agenticscraper.com/mcp

Confirm the connection:

Terminal window
codex mcp list

Codex 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

Terminal window
claude mcp add --transport http \
agentic-scraper-docs \
https://docs.agenticscraper.com/mcp

Connect 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_documentation searches guides and API operation summaries.
  • get_api_operation returns an operation by operationId, or by HTTP method and OpenAPI path.
  • get_document reads a full guide or OpenAPI resource returned by search.
  • list_documentation lists 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.