Overview
Cursor is an AI-powered code editor with built-in MCP support. You can connect your Logic MCP server to make Logic agents available while you code.Prerequisites
- Cursor installed (download here)
- Logic MCP server created (Quick Start guide)
- Server URL from Logic organization settings
Adding Logic MCP Server
Using Cursor Settings
- Open Cursor Settings → Tools & MCP
- Select New MCP Server — this opens your
mcp.json - Add your Logic server under
mcpServersand save:
"logic"- A name to identify this server"url"- Your Logic MCP server URL from organization settings
Logic exposes a Streamable HTTP endpoint, so only the
url field is required
— no command or transport flag.Editing the config directly
You can also edit the config file yourself, at either scope, using the samemcpServers entry shown above:
- Project —
.cursor/mcp.jsonin your project root (available only in that project) - Global —
~/.cursor/mcp.jsonin your home directory (available in every project)
Managing MCP Servers
Open Cursor Settings → Tools & MCP to view registered servers, and toggle Logic on or off. To remove it entirely, delete its entry frommcp.json.
Using Logic Agents
Once configured, Logic agents are available in Cursor’s chat.Verifying Your Connection
- Open Cursor Settings → Tools & MCP
- Find your Logic server in the list
- Confirm it shows as enabled with its tools listed
Accessing Logic Agents
Cursor can automatically access your Logic agents based on the conversation context. You can:- Ask Cursor to use specific Logic agents by name
- Let Cursor discover and suggest relevant Logic agents
- Execute Logic agents with parameters as needed
Long-running Logic agents are handled asynchronously. Learn more about async
task execution.
Next Steps
- Learn about async tasks - Handle long-running Logic agents
- Explore agent scope - Control tool availability

