cd /news/ai-agents/manifest-gateway-now-has-a-cli-and-a… · home topics ai-agents article
[ARTICLE · art-128393] src=manifest.build ↗ pub= topic=ai-agents verified=true sentiment=↑ positive

Manifest gateway now has a CLI and a remote MCP server

Manifest released a management CLI called mnfst and a remote Model Context Protocol (MCP) server for its gateway, both of which call the same management API as the dashboard so users can create harnesses, connect providers, set routing, and read the request log from a terminal or an AI client. The MCP server runs over HTTP at https://app.manifest.build/api/v1/mcp and authenticates via OAuth with a short-lived, revocable token, offering read-only or read-and-write consent scopes; the CLI is available in the Manifest repository at github.com/mnfst/manifest.

by read2 min views1 publishedSep 13, 2026
Manifest gateway now has a CLI and a remote MCP server
Image: Manifest (auto-discovered)

The Manifest gateway is now drivable two new ways: a management CLI, mnfst, and a remote MCP server. Both call the same management API the dashboard does, so you can create harnesses, connect providers, set routing, and read the request log from your terminal or from an AI client.

Manage the Manifest gateway from the terminal #

Log in once, in the browser:

mnfst login

mnfst login opens the dashboard, you approve, and the CLI gets a token. The token never travels through the browser.

From there, the whole workspace is a command away:

mnfst agent create --name coding-assistant --platform openclaw --category coding
mnfst provider connect xai --auth-type api_key --credential-env XAI_API_KEY
mnfst agent configure coding-assistant --models grok-4.5,grok-4 --provider xai
mnfst routing test coding-assistant
mnfst requests get --agent coding-assistant --range 7d

The command set covers harnesses, provider connections, routing (the default chain, custom tiers, Autofix, and recording), models and prices, the request ledger, and a doctor command that tells a wrong URL apart from a wrong credential in one pass.

mnfst run is the one built for coding agents. It injects a harness key into a child process without putting it in argv or the transcript:

mnfst run --agent coding-assistant -- python agent.py

The CLI is part of the Manifest repository today:

git clone https://github.com/mnfst/manifest
cd manifest && npm install
npm run build --workspace=packages/cli
npm link --workspace=packages/cli

Connect any MCP client #

The Manifest gateway also runs a remote Model Context Protocol server, so MCP clients can manage the workspace directly. It speaks MCP over HTTP and signs in with OAuth: your client opens a consent screen the first time, you approve, and it keeps a short-lived, revocable token.

Point any MCP client at:

https://app.manifest.build/api/v1/mcp

On a self-hosted install, use your own origin: https://your-host/api/v1/mcp.

Claude Code

claude mcp add --transport http manifest https://app.manifest.build/api/v1/mcp

Codex

codex mcp add manifest --url https://app.manifest.build/api/v1/mcp
codex mcp login manifest

OpenCode

Add the server to opencode.json:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "manifest": {
      "type": "remote",
      "url": "https://app.manifest.build/api/v1/mcp",
      "enabled": true
    }
  }
}

Then authorize it:

opencode mcp auth manifest

Any other MCP client works the same way: add the URL and approve in the browser.

The consent screen asks for read-only or read-and-write access. A read-only connection can look but not touch, and the write tools are not exposed to it at all. The tools mirror the CLI, including a real routing test that sends one request through the harness route to prove it works.

The full setup, discovery endpoints, and tool list are in the MCP server docs.

Get started #

── more in #ai-agents 4 stories · sorted by recency
── more on @manifest 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/manifest-gateway-now…] indexed:0 read:2min 2026-09-13 ·