Skip to main content

Build with AI

Flynet works with AI coding agents through four installable surfaces — live docs, a direct-call MCP, an agent skill, and editor rules. Use one or all; they compose.

Pick a surface

Docs MCP

Your agent searches the live Flynet docs in real time — no copy-paste, always current. Works in any MCP-aware client.
claude mcp add --transport http flynet-docs https://flynet-dev-portal.mintlify.app/mcp

API MCP

Your agent calls Flynet directly — list restaurants, read a member’s wallets — through 9 read-only tools. Runs locally; your credentials stay on your machine.
npx -y @flynetdev/mcp

Agent skill

Teaches Claude Code the two-credential auth model, the @flynetdev/core and @flynetdev/react surfaces, and the rules that trip up first integrations.

Cursor rules

The same guardrails as project rules for Cursor, so generated code uses the right header for each route and composes the real components.

Compare by use case

You want to…Use
Let your agent look up an endpoint, field, or error while it codesDocs MCP
Let your agent run real Flynet calls — fetch a restaurant, read wallets — as it worksAPI MCP
Make Claude Code understand the whole Flynet surface before it startsAgent skill
Keep Cursor’s generations consistent with Flynet’s auth and componentsCursor rules
Ground a one-off question without installing anythingDocs MCP (or the llms.txt below)

Supported clients

ClientDocs MCPAPI MCPAgent skillCursor rules
Claude CodeYesYesYes
CursorYesYesYes
Claude DesktopYesYesYes
VS Code (MCP)YesYes

Use them together

These aren’t alternatives. The skill front-loads the approach, the Docs MCP grounds specifics at the moment the agent needs them, and the API MCP runs the calls. Most setups pair the skill with the Docs MCP.

No client? Use llms.txt

Every Flynet docs page is available as plain markdown for any model:
  • llms.txt — an index of the docs, optimized for LLM context.
  • llms-full.txt — the full docs as one file.
  • Append .md to any docs URL to get its markdown source.

Next

Full walkthrough: ship with Claude →

All of it in one pass — wire up Claude, build on the SDK, handle secrets safely, deploy on Vercel.

Set up the MCP servers →