Skip to content

Connecting to Omnia MCP

The Omnia MCP server is hosted at:

https://app.useomnia.com/mcp

Authentication is handled via OAuth, you’ll be prompted to log in to your Omnia account the first time you connect.


  1. Go to SettingsConnectors
  2. Click Add Connector and enter the server URL:
    https://app.useomnia.com/mcp`
  3. Complete the OAuth flow to connect your Omnia account
  4. Once connected, Omnia tools will be available in any conversation

Run this command in your terminal:

Terminal window
claude mcp add --transport http omnia https://app.useomnia.com/mcp

Then authenticate:

Terminal window
claude /mcp

Select omnia from the list, choose Authenticate, and complete the OAuth flow in your browser. You’ll see a confirmation that the connection was successful.


  1. Open Cursor SettingsMCPAdd new global MCP server
  2. Paste the following configuration:
    {
    "mcpServers": {
    "omnia": {
    "url": "https://app.useomnia.com/mcp"
    }
    }
    }
  3. Save and restart Cursor
  4. When you use an Omnia tool for the first time, complete the OAuth flow to connect your account

Want to share the config with your team? Add a .cursor/mcp.json file to your project root with the same configuration above.


  1. Open the Command Palette (Cmd+Shift+P / Ctrl+Shift+P) and run MCP: Open User Configuration
  2. Add the following to your mcp.json file:
    {
    "servers": {
    "omnia": {
    "type": "http",
    "url": "https://app.useomnia.com/mcp"
    }
    }
    }
  3. Run MCP: List Servers from the Command Palette, start the Omnia server, and complete the OAuth flow when prompted

  1. Open Windsurf Settings and search for MCP
  2. Click View raw config to open mcp_config.json
  3. Add the Omnia server:
    {
    "mcpServers": {
    "omnia": {
    "serverUrl": "https://app.useomnia.com/mcp"
    }
    }
    }
  4. Save and restart Windsurf. Complete the OAuth flow when prompted.

  1. Go to chatgpt.com/#settings/Connectors
  2. Click Add Connector and enter the server URL:
    https://app.useomnia.com/mcp
  3. Select OAuth as the connection mechanism and complete the login flow

If your client isn’t listed above but supports MCP, use the following:

SettingValue
Server URLhttps://app.useomnia.com/mcp
TransportStreamable HTTP
AuthOAuth

My client doesn’t support remote MCP servers

If your client only supports local stdio servers, you can bridge the connection using mcp-remote:

{
"mcpServers": {
"omnia": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://app.useomnia.com/mcp"]
}
}
}

Authentication issues

  • Make sure you complete the OAuth flow all the way through
  • If you’re stuck, try disconnecting and reconnecting via your client’s MCP settings
  • You must have an active Omnia account to authenticate. Sign up here

Tools aren’t appearing

  • Restart your AI client after adding the server
  • Confirm the server URL is exactly https://app.useomnia.com/mcp (no trailing slash issues)
  • Run the server list command in your client to verify the connection status