# mcp_bridge_protocol > Exposes Cortex Memory as an MCP Server for external tools/IDEs. - Author: Letteriello - Repository: Letteriello/projeto-cortex - Version: 20260129163548 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/Letteriello/projeto-cortex - Web: https://mule.run/skillshub/@@Letteriello/projeto-cortex~mcp_bridge_protocol:20260129163548 --- --- name: mcp_bridge_protocol description: Exposes Cortex Memory as an MCP Server for external tools/IDEs. --- # MCP Bridge Protocol **Goal**: Allow external tools (Claude Desktop, IDEs) to query Cortex Memory. ## Capability This skill defines the standard for "Bridge Mode". When activated, the agent translates standard MCP requests into Cortex API calls. ## Supported Tools (Simulated) - `search_memory(query: str)` -> Maps to `GET /memory/search` - `add_memory(content: str)` -> Maps to `POST /memory/create` ## Usage (Manual Mode) If an external user asks "What do we know about auth?", you run: ```bash curl "http://localhost:8000/memory/search?query=auth" ``` And format the JSON response as a tool output.