Cursor
Connect from Cursor
Cursor supports remote MCP servers over HTTP. You can configure it via a JSON file or through the Settings UI.
Configuration File
Create .cursor/mcp.json in your project root (or ~/.cursor/mcp.json for global config):
{
"mcpServers": {
"Atomicwork": {
"type": "http",
"url": "https://<your-subdomain>.atomicwork.com/mcp",
"headers": {
"Authorization": "Bearer ${env:ATOMICWORK_TOKEN}"
}
}
}
}Then set ATOMICWORK_TOKEN in your environment. Since .cursor/mcp.json is usually committed to your repo, prefer the ${env:...} form over hardcoding — though you can inline the token directly as "Authorization": "Bearer aw_xxx" if you'd rather.
Via Settings UI
- Open Settings > MCP
- Click Add New MCP Server
- Select HTTP as the transport type
- Enter the server URL:
https://<your-subdomain>.atomicwork.com/mcp - Add the header
Authorizationwith the valueBearer aw_xxx
Notes
- Project-level config (
.cursor/mcp.json) takes precedence over global config. - Cursor resolves
${env:VAR_NAME}interpolation inurlandheaders, so you can keep secrets out of the config file.
