Replies: 1 comment 1 reply
-
Maybe some ideas from here would be relevant https://github.com/agentic-community/mcp-gateway-registry/tree/main, specifically the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Pre-submission Checklist
Your Idea
Problem
AI agents today can connect to MCP servers which expose tools, prompts, and resources, allowing them to interact with external APIs, databases, and document stores. However, two key gaps remain:
Without a standard for either of these, the “Agentic Web” remains fragmented and static.
Who benefits
Proposed solution
MCP Search Server (Content Search)
Introduce an MCP server that exposes a search tool. This allows agents to query across text, structured data, or APIs, and receive ranked results with metadata.
Example request
{ "name": "search", "arguments": { "query": "clinical trial matching with AI", "filters": { "source": "pubmed", "date_range": { "from": "2023-01-01T00:00:00Z", "to": "2025-09-27T00:00:00Z" } }, "top_k": 3 } }
Example response
{ "results": [ { "id": "doc_001", "title": "Artificial Intelligence for Clinical Trial Matching", "snippet": "This study evaluates how AI models improve patient-to-trial matching...", "url": "https://pubmed.ncbi.nlm.nih.gov/12345678", "score": 0.93, "source": "pubmed", "metadata": { "author": "J. Smith et al.", "published_at": "2024-05-12T00:00:00Z" } } ], "next_page_token": "page_2_token" }
MCP Server Discovery (Registry Search)
Extend the same concept to server-level search: a directory where agents can find new MCP servers and their advertised capabilities.
Example Use Case
Agent asks: “Find me a weather data server.”
Search engine returns:
{ "servers": [ { "id": "weather_001", "name": "OpenWeather MCP Server", "capabilities": ["getForecast", "getAlerts"], "url": "https://mcp.example.com/weather" } ] }
Scope
Beta Was this translation helpful? Give feedback.
All reactions