Authentication

All MCP requests require authentication via a Bearer token in the Authorization header.

Getting Your API Key

  • Go to Settings → MCP Server in the MindWiki app
  • Click Generate API Key
  • Copy the key — it's only shown once

Configuration

Add your MindWiki server to your MCP client configuration:

json
{
  "mcpServers": {
    "mindwiki": {
      "url": "https://api.mindwiki.io/mcp?token=YOUR_MCP_TOKEN",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Security

  • API keys are scoped to a single vault
  • Keys can be revoked at any time from the MindWiki app
  • All requests are encrypted via HTTPS
  • Keys should never be committed to version control