What is the HIG Doctor MCP server?
Apple Human Interface Guidelines search, lookup, and project audits for AI coding agents.
How to install HIG Doctor
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
HIG_SKILLS_DIROptional override for the skills directory. The published package bundles the HIG skills corpus, so this is only needed to point the server at a different or newer local copy.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"hig-doctor": {
"command": "npx",
"args": [
"-y",
"hig-mcp"
],
"env": {
"HIG_SKILLS_DIR": "<YOUR_HIG_SKILLS_DIR>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"hig-doctor": {
"command": "npx",
"args": [
"-y",
"hig-mcp"
],
"env": {
"HIG_SKILLS_DIR": "<YOUR_HIG_SKILLS_DIR>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"hig-doctor": {
"command": "npx",
"args": [
"-y",
"hig-mcp"
],
"env": {
"HIG_SKILLS_DIR": "<YOUR_HIG_SKILLS_DIR>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"hig-doctor": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"hig-mcp"
],
"env": {
"HIG_SKILLS_DIR": "<YOUR_HIG_SKILLS_DIR>"
}
}
}
}Claude Code
claude mcp add hig-doctor --env HIG_SKILLS_DIR=<YOUR_HIG_SKILLS_DIR> -- npx -y hig-mcpRelated MCP servers
DocPull
Active
Sync public web sources into cited context packs for AI agents, RAG, and MCP clients.
25
View repository →Python
MIT