Model Context Protocol (MCP) server that exposes frontend-project context (component inventory, framework detection, conventions, in-repo examples) to LLM agents like Cursor and Claude Desktop.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-server-frontend-": {
"command": "npx",
"args": [
"-y",
"catherinegao/mcp-server-frontend-context"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add mcp-server-frontend- npx -y catherinegao/mcp-server-frontend-context
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-server-frontend-": {
"command": "npx",
"args": [
"-y",
"catherinegao/mcp-server-frontend-context"
]
}
}
}
📋 Copy