Using the MCP Server (beta)
Simply and securely access your Stark data in your AI agents
Getting Started
Stark's MCP server is available over streamable HTTP at https://mcp.getstark.ai/mcp
Follow the directions below based on what you're using. After setup, you can simply ask questions about your Stark data such as "What's the status of my projects in Stark?"
npx -y mcp-remote helper to bridge to the server — we've included that as a fallback where it's still useful.Claude
Claude connects to Stark directly as a custom connector — no config files required.
Pro and Max plans:
- Open Claude (desktop or web) and go to
Settings > Connectors - In the
Connectorssection, clickAdd custom connector - Enter the name
Starkand the URLhttps://mcp.getstark.ai/mcp - Click
Add, then clickConnectand sign in to Stark when prompted - Confirm Stark's tools are available by clicking the
Search and toolsbutton below the chat textbox
Team and Enterprise plans:
A Primary Owner or Owner needs to add the connector for the organization first:
- Go to
Settings > Connectorsand toggle toOrganization connectors - Click
Add custom connector, enter the nameStarkand the URLhttps://mcp.getstark.ai/mcp, then clickAdd - Each team member then finds
Starkin their connectors list and clicksConnectto authenticate individually
Alternative — Claude desktop config file (local/stdio):
If you prefer to manage servers through the config file, you can still use the mcp-remote bridge:
- Open the Claude desktop app
- Go to
Claude > Settings > Developer - Click the
Edit Configbutton - Paste the following into the
claude_desktop_config.jsonfile that is shown:
{ "mcpServers": { "stark": { "command": "npx", "args": ["-y", "mcp-remote", "https://mcp.getstark.ai/mcp"] } } } - Restart the Claude desktop app
Cursor
Install directly in Cursor using this link or from the Cursor page using this link.
You can also add Stark manually:
- Open
Cursor Settingsand go toTools & MCP - Click
New MCP Server(this opens yourmcp.json) - Add the following:
{ "mcpServers": { "stark": { "url": "https://mcp.getstark.ai/mcp" } } } - Save the file — Cursor will connect and prompt you to sign in to Stark if needed
Visual Studio Code
- Open the command palette using the keyboard shortcut
ctrl/cmd + shift + p - In the textbox, search for
MCP: Add Server - Choose
HTTP (HTTP or Server-Sent Events)from the options - Enter the server URL:
https://mcp.getstark.ai/mcp - Type the name
Starkand choose where to save the config (Global or Workspace) - Reopen the command palette and type
MCP: List Servers - Select
Starkand then selectStart Server— sign in to Stark if prompted
OpenAI Codex
Codex can connect to Stark from both the CLI and the IDE extension (they share the same configuration).
Using the Codex CLI:
- Make sure you have the Codex CLI installed and are signed in
- Add the Stark server by running:
codex mcp add stark --url https://mcp.getstark.ai/mcp - If prompted to authenticate, sign in to Stark by running:
codex mcp login stark - Confirm the server is configured:
codex mcp list - In a Codex session, type
/mcpto view Stark's available tools
Editing the config directly:
You can also add Stark by editing ~/.codex/config.toml (or a project-scoped .codex/config.toml in a trusted project) and adding:
[mcp_servers.stark]
url = "https://mcp.getstark.ai/mcp"
Have any questions about using Stark's developer tools? Don’t hesitate to reach out to us at support@getstark.co.