4 months ago
A MCP server that provides Bun documentation to AI assistants. This enables your AI to access up-to-date Bun documentation and provide accurate guidance on Bun APIs.
✨ Features
Version-matched documentation: uses your local node_modules/bun-types/docs/, or syncs from GitHub based on your Bun version
Search functionality: includes a grep tool with JavaScript regex support for searching documentation
Built with Bun: for Bun
AI-friendly: structured to provide relevant context to AI assistants
Server Config
{
"mcpServers": {
"bun-doc-mcp": {
"type": "stdio",
"command": "bunx",
"args": [
"bun-doc-mcp"
],
"env": {}
}
}
}