MemoAI MCP Gateway

Model Context Protocol gateway with OAuth and API Key authentication.

Server Info

Available Tools

  1. memo_search - Search through memos using semantic search
  2. memo_record - Record new memo in your knowledge base
  3. get_stats - Get usage statistics for the project

API Key Authentication

Use an API Key to authenticate MCP clients that don't support OAuth (Cursor, Cline, Windsurf, etc.).

Required Configuration

ParameterValue
URLhttps://mcp.dev.mmai.azrod.me/mcp
Authorization HeaderBearer ak_YOUR_API_KEY
MEMOAI_PROJECT Headeryour-project-name

Cursor

Add to your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "memoai": {
      "url": "https://mcp.dev.mmai.azrod.me/mcp",
      "headers": {
        "Authorization": "Bearer ak_YOUR_API_KEY",
        "MEMOAI_PROJECT": "your-project-name"
      }
    }
  }
}

Cline (VS Code)

Add to your Cline MCP settings:

{
  "mcpServers": {
    "memoai": {
      "url": "https://mcp.dev.mmai.azrod.me/mcp",
      "headers": {
        "Authorization": "Bearer ak_YOUR_API_KEY",
        "MEMOAI_PROJECT": "your-project-name"
      }
    }
  }
}

Windsurf

Add to your ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "memoai": {
      "serverUrl": "https://mcp.dev.mmai.azrod.me/mcp",
      "headers": {
        "Authorization": "Bearer ak_YOUR_API_KEY",
        "MEMOAI_PROJECT": "your-project-name"
      }
    }
  }
}

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memoai": {
      "url": "https://mcp.dev.mmai.azrod.me/mcp",
      "headers": {
        "Authorization": "Bearer ak_YOUR_API_KEY",
        "MEMOAI_PROJECT": "your-project-name"
      }
    }
  }
}

OAuth Authentication (OpenCode)

For clients that support OAuth (OpenCode, etc.), use the interactive authentication flow.

Add to your .opencode/opencode.json:

{
  "mcp": {
    "memoai": {
      "type": "remote",
      "url": "https://mcp.dev.mmai.azrod.me/mcp",
      "headers": {
        "MEMOAI_PROJECT": "your-project-name"
      }
    }
  }
}

Then authenticate with:

opencode mcp auth memoai

MCP Endpoints