Catalog Explorer
Search and discover enterprise software products across the CatalogMesh network
Search Products
Mesh Network
Connect via MCP
SOC 2
HIPAA
ISO 27001
GDPR
XDR
Data Warehouse
CI/CD
AWS
Splunk
Loading catalog...
Discovery Network
The CatalogMesh discovery registry links vendor catalog nodes into a decentralized network. Each node is an independent MCP server that can be queried directly by any LLM.
Loading mesh nodes...
Connect Your LLM to CatalogMesh
Add CatalogMesh as an MCP server in your LLM client to query enterprise software catalogs directly from your AI assistant.
Claude Desktop / Cursor / Windsurf
// Add to your MCP client config:
{
"mcpServers": {
"catalogmesh": {
"url": "https://catalogmesh.jtbuchanan.com/mcp"
}
}
}
Streamable HTTP (Direct POST)
# Initialize connection
curl -X POST https://catalogmesh.jtbuchanan.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","clientInfo":{"name":"test","version":"1.0"}}}'
# List available tools
curl -X POST https://catalogmesh.jtbuchanan.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list"}'
# Search for security products with SOC 2 compliance
curl -X POST https://catalogmesh.jtbuchanan.com/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"search_products","arguments":{"query":"security","compliance":"SOC 2"}}}'