app.nzapp
AppsProjectsReposPullsChatIntegrationsGatewayModelsEvalsToolsDatasetsMCPDeploysPricingBlogDocsAssistantsCharactersArtMusic
Sign inStart building
Agent stack
Cloud coding agentAgents SDKIntegrationsBrowser agentMonitors & auto-agentsSchedulersAgent skillsMCP serversDeep research
Models & API
AI GatewayModel catalogModel evalsModel spacesPlaygroundText to imageImage to 3DText to 3DMusic & SFXAudio editorMedia optimizerAI art & libraryChatAPI referenceSchemaBecome a provider
Compute & hosting
DeploysAddonsPostgres hostinggobed vector searchSite hostingAnalyticsCog GPU hostingRL trainingBuilds & CIWorkersTask queuesDomainsGit hosting
Tools
AI toolsDrawDiffusion canvasLive DrawWriteSheetsArtifactsVideo studioNotebooksDatasets
Learn
DocsBlogEval guidesPrompt libraryCLIAlternativesPapersAI charactersArt gallerySecurityConsulting
Company
PricingEnterpriseSettingsBillingStatusInvestorsCreate accountTerms of ServicePrivacy Policy
app.nzapp.nz

AI agent cloud for coding, deploys, model routing, and research. Built for teams shipping software.

Built in New Zealand by App AI NZ.

Social
X / TwitterGitHubYouTube
The app.nz network
GpuBrainPapersReading TimeNetwrckText-Generator.ioCodex InfinityOpenPathsCuteDSLAI Art GeneratorAIArt-Generator.artSiteSimSimplexGenDictatorFlowWebFiddleRing.nzChatGibidyBitBankExperimentFlowEvangelerHires.nzHow.nzV5 GamesAddicting Word GamesBig Multiplayer ChessWord SmashingreWord GameMultiplication Master
© 2026 App AI NZ Ltd. All rights reserved.All systems normalTermsPrivacy
Blog
June 26, 2026·5 min read·app.nz

app.nz is now an MCP server

Point Claude, Codex, or any MCP client at app.nz/mcp and your agent can run every gateway model — chat, images, embeddings — plus search the MCP directory, through one connector and one API key.

Last week we shipped a searchable directory of MCP servers. This week app.nz became one.

app.nz is now itself a Model Context Protocol server. Point Claude, Codex, Cursor, or any MCP client at a single endpoint and your agent can run every model on our gateway — chat across OpenAI, Anthropic, Google and xAI, generate images, create embeddings — and search the MCP directory, all through one connector with one API key.

The endpoint

POST https://app.nz/mcp

It speaks JSON-RPC 2.0 over Streamable HTTP, stateless — the modern remote-MCP transport. /v1/mcp is an alias, and a GET on the same path serves the human docs page. Authenticate with a Bearer key from app.nz/api-keys — the same key works for the OpenAI-compatible API.

Wiring it up

In Claude Code, one line:

claude mcp add --transport http app-nz https://app.nz/mcp \
  --header "Authorization: Bearer YOUR_APP_NZ_API_KEY"

For any client that reads a JSON config (Claude Desktop, Cursor, Windsurf):

{
  "mcpServers": {
    "app-nz": {
      "type": "http",
      "url": "https://app.nz/mcp",
      "headers": { "Authorization": "Bearer YOUR_APP_NZ_API_KEY" }
    }
  }
}

The tools

ToolWhat it does
chatChat completion against any model id, or app/auto to let us route
list_modelsDiscover routable models with provider, modality and context window
generate_imageText-to-image, returns hosted URLs
embedEmbedding vectors for text
search_mcp_serversSemantic search over the app.nz MCP directory

chat is the interesting one: pass app/auto and we classify the prompt and pick a tier for you, then walk a fallback chain if a provider is down — so your agent gets a working model without you hard-coding one.

How it's built

The MCP server doesn't reimplement anything. Each tool call is dispatched in-process to the same gateway handlers that serve /v1/chat/completions, /v1/images/generations and /v1/embeddings, through a sub-context that inherits your auth. That means model routing, bring-your-own-key selection, fallback, metering and billing are all reused unchanged — the MCP surface and the REST surface can never drift apart, because they're the same code. search_mcp_servers runs on the same local embedding index that powers the directory's search box.

That single abstraction is the whole point of MCP: one Gmail server works in Claude, Codex, and Cursor without per-app glue. Now the same is true for an entire model gateway. Get a key at app.nz/api-keys, and if you want somewhere to run the agents that use it, that's what the rest of app.nz is for — the cloud coding agent, schedulers, and instant deploys.

Build what you just read

Ship agents, models, and apps on one cloud.

Start with free credits, then use the same platform from the web app, CLI, desktop app, or MCP.

Start building freeRead the docs

Keep reading

A searchable directory of 120+ MCP servers

What the Model Context Protocol is, how to wire a server into Claude or Codex, and a new searchable index of 120+ MCP servers filterable by category and pricing.

What is an AI agent cloud?

Why app.nz is broader than a coding agent, model gateway, inference provider, or app host—and how one integrated loop changes the work of shipping AI software.

Designing animation asset galleries for agents

A stable search and download contract for motion, VFX, terrain, 3D objects, REST, CLI, and MCP clients.