by augmnt
Comprehensive MCP server providing real-time framework documentation access for Claude Code with intelligent caching, multi-source integration, and context-aware assistance.
# Add to your Claude Code skills
git clone https://github.com/augmnt/augments-mcp-server
A next-generation framework documentation provider for Claude Code via Model Context Protocol (MCP). Provides query-focused API context by extracting TypeScript definitions directly from npm packages - delivering minimal, accurate information instead of dumping entire documentation pages.
mcp-name: dev.augments/mcp
Version 4.0 introduces a fundamentally new approach to framework documentation:
| Old Approach (v3) | New Approach (v4) | |-------------------|-------------------| | Fetch entire documentation pages | Extract specific API signatures | | ~50KB of context per query | ~500 tokens of precise context | | Manual framework registry (85) | Auto-discovery via npm (millions) | | No version support | Version-specific queries | | Prose documentation | TypeScript definitions (source of truth) |
Documentation can be outdated or wrong. TypeScript definitions can't lie - they're compiled and must match the actual API. When you ask "what are the params for useEffect?", v4 gives you:
function useEffect(effect: EffectCallback, deps?: DependencyList): void
Not 5KB of tutorial explaining what effects are.
# Add the hosted MCP server
claude mcp add --transport http augments https://mcp.augments.dev/mcp
# Verify configuration
claude mcp list
{
"mcpServers": {
"augments": {
"transport": "http",
"url": "https://mcp.augments.dev/mcp"
}
}
}
# Get API signature with minimal context
@augments get_api_context query="useEffect cleanup" framework="react" version="19"
# Search for APIs across frameworks
@augments search_apis query="state management hook"
# Get version information
@augments get_version_info framework="react" fromVersion="18" toVersion="19"
| Tool | Description |
|------|-------------|
| get_api_context | Query-focused TypeScript extraction - returns minimal API signatures |
| search_apis | Search for APIs across frameworks by keyword |
| get_version_info | Get npm version info, compare versions, detect breaking changes |
| Tool | Description |
|------|-------------|
| list_available_frameworks | List frameworks by category |
| search_frameworks | Search with relevance scoring |
| get_framework_info | Get detailed framework config |
| get_registry_stats | Registry statistics |
| Tool | Description |
|------|-------------|
| get_framework_docs | Fetch comprehensive documentation |
| get_framework_examples | Get code examples |
| search_documentation | Search within docs |
| Tool | Description |
|------|-------------|
| get_framework_context | Mult...