Can I deploy an app without GitHub or a terminal?

Yes, if the platform is one the assistant can publish to directly rather than one that watches a repository. With the Fine Structure connector, Claude holds the account, creates the app, and publishes it. Git is never involved, and neither is a command line.

Why most platforms ask for a repository

Git-based deployment is excellent engineering: every deploy is a commit, every rollback is a revert, and the history is the audit trail. That design assumes the code already exists somewhere and that a person is willing to manage it. When the app is being described rather than written, that assumption is the obstacle.

What replaces the repository

Saved versions. Every file change through the connector records a restorable version automatically, so the rollback story survives without anyone running a git command. You can ask to compare versions, restore one file, or roll a change back entirely, all in the chat.

Where this route does not fit

If you already have a repository, a build pipeline and a team that deploys from git, a platform built around that workflow is the right tool and this is not trying to replace it. This route is for the case those platforms handle badly: there is no repository yet, because the application does not exist yet, and the person describing it is not going to open a terminal.

What the connector actually does

Connecting takes about two minutes

  1. Open claude.ai and sign in. A free Claude account is enough; free accounts can add one custom connector.
  2. Go to Settings, then Connectors, choose Browse connectors, and search for Fine Structure. Click Connect.
  3. Sign in with a Fine Structure account (the free tier is enough, no credit card) and approve.
  4. Back in the chat, ask for what you want built. The result is published at a public link.

In Claude Code: claude mcp add --transport http finestructure https://finestructure.ai/api/mcp, then run /mcp to authenticate. The full guide covers the desktop app and every other client.

Questions people ask

What if I want a repository later?

The files are readable through the same tools that write them, so copying the project out is a request rather than a migration project.

Is there a build step I have to run?

No. Generation, validation and publishing happen on the platform when Claude calls the tools.

Can a developer still work on it normally?

Yes, from Claude Code or Cursor against the same account, reading and patching files directly.

Where this is listed

Fine Structure is a Community connector in Anthropic's connector directory (listed, not verified or endorsed), and the same server is recorded in the official MCP registry as ai.finestructure/fine-structure, on Smithery and on Glama. The endpoint answers publicly at /api/mcp/manifest, so any claim on this page can be checked against the live tool list.

Related: publishing what Claude built and deploying from Claude Code.