Agentready MCP Server

Make any website queryable by AI agents via AgentReady. Tools: list_sites and ask_site.

Remote serverstreamable-httpPython

What is the Agentready MCP server?

Most developer tooling work still happens through a UI a human drives. Agentready MCP server moves it into the conversation instead. Make any website queryable by AI agents via AgentReady. Tools: list_sites and ask_site.

The short version

AgentReady is a hosted capability layer that makes any website discoverable and usable by agents through MCP.

The tools it exposes

The server publishes 7 tools. What each one is for:

  • list_sites — Lists all websites currently indexed by AgentReady with their titles and page counts. Use this to check if a domain is already available before
  • get_site_capabilities — The get_site_capabilities tool exposed by this server
  • plan_site_action — The plan_site_action tool exposed by this server
  • submit_site — The submit_site tool exposed by this server
  • ask_site — The ask_site tool exposed by this server
  • refresh_site — The refresh_site tool exposed by this server
  • rate_answer — The rate_answer tool exposed by this server

What it needs from you

Configuration is passed through the environment: AGENTREADY_MCP_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Agentready's toolset — list_sites, get_site_capabilities, plan_site_action and 4 more — is a fair guide to whether it matches your workflow. It is maintained by AshutoshRaj97; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
list_sitesLists all websites currently indexed by AgentReady with their titles and page counts. Use this to check if a domain is already available before submitting it.
get_site_capabilitiesThe get_site_capabilities tool exposed by this server.
plan_site_actionThe plan_site_action tool exposed by this server.
submit_siteThe submit_site tool exposed by this server.
ask_siteThe ask_site tool exposed by this server.
refresh_siteThe refresh_site tool exposed by this server.
rate_answerThe rate_answer tool exposed by this server.

How to install the Agentready MCP server

{
  "mcpServers": {
    "agentready": {
      "command": "npx",
      "args": ["-y", "@agentreadyweb/mcp"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
AGENTREADY_MCP_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Agentready to list sites.
  • Use Agentready to get site capabilities.
  • Use Agentready to plan site action.

Frequently asked questions

It connects Agentready to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (list_sites, get_site_capabilities, plan_site_action, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Agentready directly.