Give ChatGPT direct access to your Mnema workspace. It can search docs, walk flows, and manage tasks — right inside the chat.
Enterprise admins can add Mnema as a custom MCP connector in the admin panel. All users in the org will then see Mnema as an available tool.
Pro and Plus users can add custom MCP servers in ChatGPT's Developer Mode.
Mnema) and paste the URL below
If you're building with the OpenAI API directly, add Mnema as a native MCP tool
in your tools array:
const response = await openai.responses.create({
model: "gpt-4o",
tools: [{
type: "mcp",
server_label: "mnema",
server_url: "https://api.theboringpeople.in/mcp/http",
headers: { "Authorization": "Bearer YOUR_MNEMA_API_KEY" },
require_approval: "never",
}],
input: "Search Mnema for our authentication architecture.",
}); Get your API key from Mnema → Connections → Claude. Make sure to enable the workspace:write scope if you want ChatGPT to write docs too.