The Omega Point MCP server allows you to securely connect AI assistants like ChatGPT, Claude, Cursor, and other compatible tools directly to your Omega Point account.
Before You Start
You will need:
An Omega Point account with
A login with access to datasets, resources (portfolio, watchlist, etc).
An AI client that supports MCP (e.g. Claude, Cursor, ChatGPT, Copilot)
Setup Instructions
General
Set up the remote MCP server using either of the following URLs (both are supported):
When you attempt to use a MCP tool for the first time, it may prompt you to log into the Omega Point platform to authenticate and connect.
Claude (Team, Enterprise)
A Claude account admin can add the Omega Point MCP connector so that the entire organization has access. Navigate to the Connectors page to "Add a custom connector". Use the following MCP remote server url: https://mcp.ompnt.com/mcp
We also recommend adding downloads.ompnt.com to the list of allowed domains under Capabilities in the admin settings. This lets the MCP server return large results as downloadable files instead of filling up the model's context window.
Claude Code
If an admin has set up the Omega Point MCP connector for the organization, it should already be available for Claude Code. Users may still need to authenticate on first use.
Otherwise, add it with:
claude mcp add --transport http omegapoint https://mcp.ompnt.com/mcp
Cursor
Go to Cursor/Settings/Tools & MCP to add a new MCP Server.
Use the following JSON configuration:
{
"mcpServers": {
"Omega Point": {
"url": "https://mcp.ompnt.com/mcp",
"headers": {}
}
}
}
ChatGPT
Go to Settings -> Connectors -> Advanced to enable Developer Mode.
This can only be enabled by a ChatGPT account admin.
Then add a new connector and enter the MCP server url https://mcp.ompnt.com/mcp. Select Authentication: OAuth.
Note: ChatGPT does not currently support adding custom domains to its sandbox, so downloading artifacts from Omega Point is not available. This means larger tool results may fail or be truncated.
Co-pilot
VS code 1.99 or later + github copilot extension installed
Open VS Code and run Preferences: Open User Settings (JSON) from the command palette (Cmd+Shift+P). Add the mcp block and save the file:
{
// ... your existing settings ...
"mcp": {
"servers": {
"omegapoint": {
"type": "streamable-http",
"url": "https://mcp.ompnt.com/mcp"
}
}
}
}Per-project alternative: instead of user settings, create a .vscode/mcp.json file in your project root with the same structure under a top-level "servers" key. See VS Code MCP documentation for details.
Connect and authenticate
Open Copilot Chat (the chat panel, not inline completions).
Switch to Agent mode using the mode dropdown at the top of the chat panel.
Click the tool picker button (wrench icon) below the chat input. You should see omegapoint listed.
If the server shows a disabled state, click the refresh icon next to the Omega Point entry. This triggers tool discovery and starts the OAuth login flow.
Complete the Omega Point login in your browser when prompted.
Once authenticated, the Omega Point tools appear with checkmarks in the tool picker. Make sure omegapoint is enabled.
The refresh step is important. Tool discovery is what initiates the OAuth handshake. If you skip it, Copilot won't have your auth token and tool calls will fail.
Co-pilot CLI (Github)
Prerequisites
GitHub CLI (gh) installed
Copilot CLI extension: gh extension install github/gh-copilot
An Omega Point account
Add the MCP server
Create or edit ~/.copilot/mcp-config.json:
{
"mcpServers": {
"omegapoint": {
"type": "http",
"url": "https://mcp.ompnt.com/mcp"
}
}
}Note: The CLI uses "mcpServers" as the root key (not "servers" like VS Code) and "http" as the type (not "streamable-http"). See the Copilot CLI MCP documentation for details.
Connect and authenticate
Start a Copilot CLI session: gh copilot chat
Run /mcp show to list configured servers. You should see omegapoint.
On first use, the CLI will initiate the OAuth flow and open your browser to complete the Omega Point login.
