🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

starlight-agentready

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

starlight-agentready

Starlight plugin that submits your docs to AgentReady after every build, making them instantly queryable by AI agents via MCP.

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
8
33.33%
Maintainers
1
Weekly downloads
 
Created
Source

starlight-agentready

Starlight plugin that submits your docs site to AgentReady after every build, making it instantly queryable by AI agents (Claude, Cursor, Windsurf, and any MCP client) with cited, multi-page answers.

Installation

npm install starlight-agentready

Usage

Add the plugin to your astro.config.mjs:

import { defineConfig } from 'astro/config'
import starlight from '@astrojs/starlight'
import agentready from 'starlight-agentready'

export default defineConfig({
  site: 'https://docs.yoursite.com',  // used to infer domain automatically
  integrations: [
    starlight({
      title: 'My Docs',
      plugins: [agentready()],
    }),
  ],
})

If you don't have site set, specify the domain explicitly:

plugins: [agentready({ domain: 'docs.yoursite.com' })]

After each astro build:

[AgentReady] ✓ Indexed docs.yoursite.com. AI agents can now query it.
[AgentReady]   MCP:  https://www.agentready.it.com/api/mcp

How it works

After your site builds, the plugin posts your domain to AgentReady's indexing webhook. AgentReady crawls your docs and makes them queryable via:

  • MCP serverhttps://www.agentready.it.com/api/mcp (works in Claude, Cursor, Windsurf, and any MCP client)
  • REST endpointPOST https://www.agentready.it.com/api/sites/{id}/ask
  • llms.txthttps://www.agentready.it.com/api/sites/{id}/llms.txt

Connecting to your AI tools

Claude Code / Claude Desktop

claude mcp add agentready npx @agentreadyweb/mcp

VS Code (GitHub Copilot)

// .vscode/mcp.json
{
  "servers": {
    "agentready": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@agentreadyweb/mcp"]
    }
  }
}

Then ask your AI: "Ask agentready: how do I configure X in [your docs]?"

Configuration

OptionDefaultDescription
domain(inferred from site)Domain of your docs site (e.g. docs.example.com)

License

MIT © AgentReady

Keywords

starlight

FAQs

Package last updated on 16 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts