MCP Framework Documentation Server
# @mcpframework/mcp-framework-docs
MCP documentation server for [mcp-framework](https://github.com/QuantGeekDev/mcp-framework). Gives AI agents (Claude Code, Cursor, etc.) tools to search, browse, and retrieve the full mcp-framework documentation.
Powered by [@mcpframework/docs](https://www.npmjs.com/package/@mcpframework/docs).
## Quick Start
### Claude Code
```bash
claude mcp add mcp-framework-docs -- npx -y @mcpframework/mcp-framework-docs
```
### Claude Desktop
Add to `claude_desktop_config.json`:
```json
{
"mcpServers": {
"mcp-framework-docs": {
"command": "npx",
"args": ["-y", "@mcpframework/mcp-framework-docs"]
}
}
}
```
### Cursor
Add to your MCP settings:
```json
{
"mcp-framework-docs": {
"command": "npx",
"args": ["-y", "@mcpframework/mcp-framework-docs"]
}
}
```
## Available Tools
| Tool | Description |
|------|-------------|
| `search_docs` | Search mcp-framework documentation by keyword or phrase |
| `get_page` | Retrieve full content of a documentation page |
| `list_sections` | Browse the documentation structure |
## License
MIT
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: get_page retrieves specific page content, list_sections provides structural overview, and search_docs enables keyword-based discovery. There is no overlap in functionality, making tool selection straightforward for an agent.
All tools follow a consistent verb_noun pattern (get_page, list_sections, search_docs) with clear, descriptive names. The naming convention is uniform and predictable throughout the set.
With only 3 tools, the server feels minimal for a documentation server scope. While the core operations are covered, the count is borderline thin, potentially limiting advanced interactions like filtering or metadata operations.
The tools provide essential CRUD-like coverage for documentation access: discovery (list_sections), retrieval (get_page), and search (search_docs). A minor gap exists in update or management capabilities, but the surface supports core user workflows effectively.