How to connect Fine Structure to Cursor with MCP

Cursor can work with Fine Structure through an mcp.json file in the project or through a global configuration.

Cursor is a good fit for anyone already working inside a code editor who wants to connect Fine Structure to the same workflow. Once connected, you can ask Cursor to edit an app created in Fine Structure using the platform's official tools.

For a single project: Create .cursor/mcp.json inside the project. This is good when you don't want the connection to show up everywhere.

For all projects: Create ~/.cursor/mcp.json. This is good for anyone who works with Fine Structure regularly.

Remote MCP: The connection uses the address https://finestructure.ai/api/mcp and an Authorization header.

Token first, then Cursor

Without an MCP token, Cursor has no safe way to identify you to Fine Structure.

Steps

{
  "mcpServers": {
    "fine-structure": {
      "type": "http",
      "url": "https://finestructure.ai/api/mcp",
      "headers": {
        "Authorization": "Bearer fse2_mcp_<token>"
      }
    }
  }
}

Recommended wording for the first request