{
  "markdown": "# VueUse MCP\n\nMCP server that gives AI coding agents instant access to VueUse documentation — search composables, read docs, and get suggestions.\n\n## How It Works When You Code\n\nThis is an [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server. When you connect it to an AI coding agent like Claude Code, the agent can automatically look up VueUse documentation while helping you write code.\n\nFor example, if you ask \"help me track the mouse position in Vue,\" the agent will:\n\n1. Call `search_composables` or `suggest_composable` to find relevant composables\n2. Call `get_composable_docs` to read the full documentation for `useMouse`\n3. Write code using the correct API, options, and types — without you needing to look anything up\n\nYou don't need to manually call any tools. The agent decides when to use them based on your questions.\n\n## Quick Start\n\n### Claude Code\n\n```bash\nclaude mcp add vueuse-mcp -- npx vueuse-mcp\n```\n\n### Codex CLI\n\nAdd to your MCP config:\n\n```json\n{\n  \"servers\": {\n    \"vueuse\": {\n      \"command\": \"npx\",\n      \"args\": [\"vueuse-mcp\"]\n    }\n  }\n}\n```\n\n### OpenCode\n\nAdd to your `opencode.json`:\n\n```json\n{\n  \"mcp\": {\n    \"vueuse\": {\n      \"command\": \"npx\",\n      \"args\": [\"vueuse-mcp\"]\n    }\n  }\n}\n```\n\n## Available Tools\n\n| Tool | Description |\n|------|-------------|\n| `search_composables` | Search by name, keyword, or concept. Returns ranked results with descriptions. |\n| `get_composable_docs` | Get full docs for a composable — signature, types, options, examples, related functions. |\n| `suggest_composable` | Describe a use case in natural language and get ranked suggestions with trade-offs. |\n| `list_categories` | List all categories with composable counts. Optionally filter by package. |\n\n## Keeping Data Fresh\n\nThe composable data is scraped from the VueUse GitHub repo. To update:\n\n```bash\nnpm run scrape && npm run build\n```\n\nSet a `GITHUB_TOKEN` environment variable to avoid rate limits during scraping. See `.env.example`.\n\n## Development\n\n```bash\ngit clone https://github.com/kovoor/vueuse-mcp.git\ncd vueuse-mcp\nnpm install\nnpm run scrape    # fetch composable data from GitHub\nnpm run build     # compile TypeScript\nnpm start         # run the server\n```\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for how to add tools, update the scrape pipeline, and submit PRs.\n",
  "bytes": 2342,
  "sha": "49df1045b55a0bc2b70ceb82e921a6ed1cd68e41c935815ad0f2807f6a7a25df",
  "repo_slug": "kovoor/vueuse-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_kovoor_vueuse_mcp_d858d165/readme"
}