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
| Service | Port | Endpoints |
|---|---|---|
| mcp-search | 8020 | GET / Β· GET /search?q=query |
| mcp-mem0 | 8030 | POST /memory/add Β· POST /memory/search |
| mcp-station | 8585 | Cloudshipai 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.