Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions mcp-registry/servers/ragmap.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,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"
}
]
}
13 changes: 9 additions & 4 deletions src/mcpm/commands/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""

from rich.console import Console
from rich.markup import escape

from mcpm.utils.display import print_error
from mcpm.utils.repository import RepositoryManager
Expand Down Expand Up @@ -94,21 +95,21 @@ def _display_server_info(server):
# Repository URL
if "repository" in server and "url" in server["repository"]:
repo_url = server["repository"]["url"]
console.print(f"Repository: [blue underline]{repo_url}[/]")
console.print(f"Repository: [blue underline]{escape(repo_url)}[/]")

# Homepage URL
if "homepage" in server:
homepage_url = server["homepage"]
console.print(f"Homepage: [blue underline]{homepage_url}[/]")
console.print(f"Homepage: [blue underline]{escape(homepage_url)}[/]")

# Documentation URL
if "documentation" in server:
doc_url = server["documentation"]
console.print(f"Documentation: [blue underline]{doc_url}[/]")
console.print(f"Documentation: [blue underline]{escape(doc_url)}[/]")

# Author URL
if author_url:
console.print(f"Author URL: [blue underline]{author_url}[/]")
console.print(f"Author URL: [blue underline]{escape(author_url)}[/]")

console.print("")

Expand All @@ -129,6 +130,10 @@ def _display_server_info(server):
cmd_str = f"{cmd} {' '.join(args)}" if args else cmd
console.print(f"Command: [green]{cmd_str}[/]")

# Show URL for http installations
if method_type == "http" and "url" in method:
console.print(f"URL: [green]{escape(method['url'])}[/]")

# Show dependencies if available
dependencies = method.get("dependencies", [])
if dependencies:
Expand Down