mpx-ecology/mcp-server-rag
3.2
If you are the rightful owner of mcp-server-rag and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The MCP Server for Mpx Docs RAG is a server implementation designed to facilitate the integration of Model Context Protocol (MCP) with Mpx documentation, enabling efficient retrieval and generation of context-aware responses.
MCP Server for Mpx Docs RAG
Usage
VS Code
在 setting.json
中配置 MCP Server
- 通过 npm 包加载(推荐)
{
// ..
"mcp": {
"servers": {
"mpx-rag": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@mpxjs/mcp-server-rag"]
}
}
}
}
- 本地 clone 编译项目后调试:
{
// ..
"mcp": {
"servers": {
"mpx-rag": {
"type": "stdio",
"command": "node",
"args": ["/Users/didi/mycode/github/mcp-server-rag/dist/index.js"]
}
}
}
}
演示
VS Code 中通过 Copilot Chat 调用 MCP Server 如下: