A doc mcp server
To use with Desktop APP
, such as Claude, VSCode, Cline, Cherry Studio, Cursor, and so on, add the MCP server config below.
On Mac system:
{
"mcpServers": {
"doc-mcp-server": {
"command": "npx",
"args": [
"-y",
"@my-mcp-hub/doc-mcp-server"
]
}
}
}
On Window system:
{
"mcpServers": {
"doc-mcp-server": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"@my-mcp-hub/doc-mcp-server"
]
}
}
}