Mnema Mnema

Connect ChatGPT to Mnema

Give ChatGPT direct access to your Mnema workspace. It can search docs, walk flows, and manage tasks — right inside the chat.

ChatGPT Business / Enterprise ADMIN

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.

  1. Go to admin.openai.com → Connectors → Add custom connector
  2. Paste the MCP URL below and click Verify
  3. Enter a Bearer token from your Mnema API keys page
  4. Save and enable for your org
https://api.theboringpeople.in/mcp/http

ChatGPT Pro / Plus DEVELOPER MODE

Pro and Plus users can add custom MCP servers in ChatGPT's Developer Mode.

  1. Open ChatGPT → click your avatar → Settings → Beta features → Developer Mode (enable it)
  2. Go to Settings → Connections → Add MCP server
  3. Enter a name (Mnema) and paste the URL below
  4. When prompted for auth, select Bearer token and paste your API key
https://api.theboringpeople.in/mcp/http

OpenAI API (Responses API) CODE

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.