@agentreadyweb/docusaurus-plugin
v1.0.2
Published
Docusaurus plugin that auto-indexes your docs in AgentReady after each build — making them instantly queryable by Claude, Cursor, and any MCP client
Maintainers
Readme
@agentreadyweb/docusaurus-plugin
Auto-index your Docusaurus site in AgentReady after every build — making your docs instantly queryable by Claude, Cursor, Windsurf, and any MCP client.
Install
npm install @agentreadyweb/docusaurus-pluginUsage
// docusaurus.config.js
plugins: [
['@agentreadyweb/docusaurus-plugin', { domain: 'docs.yoursite.com' }]
]That's it. After each docusaurus build, the plugin POSTs your domain to AgentReady's webhook. If the site isn't indexed yet, it gets crawled automatically. If it is, the index refreshes.
[AgentReady] ✓ Indexed! Agents can now query your docs at:
MCP: https://www.agentready.it.com/api/mcpWhat it does
- Hooks into Docusaurus's
postBuildlifecycle - Calls
POST https://www.agentready.it.com/api/webhook/refreshwith your domain - No API key or account needed — rate limited to once per hour per domain
- New sites are indexed automatically; existing sites are refreshed
Querying your docs
Once indexed, any MCP client can query your docs:
// Claude Desktop / Cursor / Windsurf
// Add to your MCP config:
{
"agentready": {
"command": "npx",
"args": ["-y", "@agentreadyweb/mcp"]
}
}Or connect via HTTP:
https://www.agentready.it.com/api/mcpOptions
| Option | Type | Required | Description |
|--------|------|----------|-------------|
| domain | string | Yes | Your docs domain (e.g. docs.yoursite.com) |
