Home β€Ί MCP Servers

πŸ”Œ MCP Servers

Three REST services + pending stdio wrappers. Neither mcp-search nor mcp-mem0 speak native MCP β€” they are plain FastAPI REST APIs.

⏳ PendingPython stdio wrappers for mcp-search and mcp-mem0 are still needed. Use @specialized-mcp-builder to build them.

Active Services

ServicePortEndpoints
mcp-search8020GET / Β· GET /search?q=query
mcp-mem08030POST /memory/add Β· POST /memory/search
mcp-station8585Cloudshipai MCP hub

Build the stdio Wrappers

# In OpenCode:
@specialized-mcp-builder
Build a Python stdio MCP wrapper for mcp-search REST (http://localhost:8020).
Target: ~/bin/mcp-search-wrapper. Use the Python mcp library.
Expose: search(query: str) -> list[SearchResult].
Handle 5xx with 3x retry. Include eval test: 3 known queries return non-empty results.