forked from pathintegral-institute/mcpm.sh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathragmap.json
More file actions
56 lines (56 loc) · 1.69 KB
/
Copy pathragmap.json
File metadata and controls
56 lines (56 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ragmap",
"display_name": "RAGMap",
"description": "RAG-focused subregistry + MCP server to discover and route to retrieval-capable MCP servers using semantic search, filters, and explainable ranking.",
"repository": {
"type": "git",
"url": "https://github.com/khalidsaidi/ragmap"
},
"homepage": "https://ragmap-api.web.app",
"author": {
"name": "Khalid Saidi",
"url": "https://github.com/khalidsaidi"
},
"license": "MIT",
"categories": ["MCP Tools", "Knowledge Base"],
"tags": ["MCP", "RAG", "registry", "discovery", "retrieval"],
"tools": [
{
"name": "rag_find_servers",
"description": "Search/filter RAG-related MCP servers from the RAGMap subregistry."
},
{
"name": "rag_get_server",
"description": "Get latest server record by registry name."
},
{
"name": "rag_list_categories",
"description": "List RAG categories used for filtering."
},
{
"name": "rag_explain_score",
"description": "Explain RAG relevance score for a server."
}
],
"installations": {
"npm": {
"type": "npm",
"command": "npx",
"args": ["-y", "@khalidsaidi/ragmap-mcp@latest"],
"recommended": true,
"description": "Run RAGMap MCP locally via stdio (connects to hosted API)"
},
"http": {
"type": "http",
"url": "https://ragmap-mcp.web.app/mcp",
"description": "Use hosted Streamable HTTP endpoint (no install)"
}
},
"examples": [
{
"title": "Find RAG servers",
"description": "Search for retrieval-capable MCP servers by meaning or filters",
"prompt": "Find MCP servers that support RAG with remote (streamable HTTP) transport"
}
]
}