Connect Claude to Fine Structure

One approval links Claude to your Fine Structure account. A conversation can then build a complete app, publish it, connect a custom domain, and leave an agent running behind it.

Guides: deploy from Claude Code and connecting Claude with MCP.

Other platforms: connect Fine Structure to any AI.

Before you start

Step by step

  1. On claude.ai, go to Customize > Connectors.
  2. Click the plus button, then choose Add custom connector.
  3. Paste https://finestructure.ai/api/mcp as the remote MCP server URL.
  4. Leave Advanced settings empty. Fine Structure registers the client automatically, so there is no OAuth Client ID or Client Secret to fill in.
  5. Click Add, then click Connect on the new connector and approve the Fine Structure sign in page.
  6. Team and Enterprise only: an Owner first adds it at Organization settings > Connectors > Add, hovers Custom and picks Web, enters the same URL and clicks Add. Members then open Customize > Connectors and click Connect.
  7. For Claude Code, run in a terminal: claude mcp add --transport http finestructure https://finestructure.ai/api/mcp
  8. Inside Claude Code, run /mcp and complete the authentication prompt for the finestructure server.
  9. Confirm it worked with claude mcp list, which should show finestructure as Connected rather than Needs authentication.
  10. Optional, for the shortcut commands: run /plugin marketplace add finestructure-ai/claude-plugin then /plugin install finestructure@finestructure

Configuration

{
  "mcpServers": {
    "finestructure": {
      "type": "http",
      "url": "https://finestructure.ai/api/mcp"
    }
  }
}

What to watch out for

Questions people ask

Do I need to fill in the OAuth Client ID and Client Secret under Advanced settings?

No. Those fields exist for servers that issue static credentials. Fine Structure supports dynamic client registration, so leaving them empty is correct and the sign in will still work.

Does the connector work in the Claude desktop app as well as the browser?

Yes. Anthropic documents custom remote MCP connectors on Claude, Cowork and Claude Desktop, and the connector you add once appears across them on the same account.

Do I need the plugin to deploy from Claude Code?

No. The MCP server already exposes publishing and domain tools, so you can just ask. The plugin only wraps common jobs in the /deploy, /fs-status and /fs-domain commands so you do not have to describe them each time.

Vendor documentation we checked