OpenAdapterOpenAdapter
MCP Store

MCP Store

Drop-in MCP servers that plug OpenAdapter features into Claude Code, OpenCode, and other MCP-aware tools.

The Model Context Protocol (MCP) lets coding agents call external tools. OpenAdapter ships ready-to-install MCP servers you can wire into any MCP-aware client with a single one-liner.

Supported clients

Each installer below takes a tool=claude-code or tool=opencode query param to pick the target client.

Available servers

Give your agent real-time web search via SearXNG.

curl -sL "https://api.openadapter.in/api/setup/mcp-search?key=YOUR_API_KEY&tool=claude-code" | bash
irm "https://api.openadapter.in/api/setup/mcp-search-ps?key=YOUR_API_KEY&tool=claude-code" | iex

Requires Docker — runs SearXNG on port 8888 and installs an MCP bridge.

Vision

Let the agent see and analyze images using QwenVL through the gateway.

curl -sL "https://api.openadapter.in/api/setup/mcp-vision?key=YOUR_API_KEY&tool=claude-code" | bash
irm "https://api.openadapter.in/api/setup/mcp-vision-ps?key=YOUR_API_KEY&tool=claude-code" | iex

No local GPU needed. Each image analysis counts as one request against your plan.

Terminal Monitor

Run and monitor background processes from your agent — builds, dev servers, deploys — without leaving the editor.

curl -sL "https://api.openadapter.in/api/setup/mcp-terminal?key=YOUR_API_KEY&tool=claude-code" | bash
irm "https://api.openadapter.in/api/setup/mcp-terminal-ps?key=YOUR_API_KEY&tool=claude-code" | iex

No Docker required. Processes persist until the MCP server restarts.

Image Generate

Text-to-image with auto-failover across z-image-turbo, neta-lumina, z-image, and qwen-image-2512. Saves directly into your project directory.

curl -sL "https://api.openadapter.in/api/setup/mcp-image-gen?key=YOUR_API_KEY&tool=claude-code" | bash
irm "https://api.openadapter.in/api/setup/mcp-image-gen-ps?key=YOUR_API_KEY&tool=claude-code" | iex

Image Edit

Modify existing images. Supply a source image plus a text prompt; uses the qwen-image-edit model.

curl -sL "https://api.openadapter.in/api/setup/mcp-image-edit?key=YOUR_API_KEY&tool=claude-code" | bash
irm "https://api.openadapter.in/api/setup/mcp-image-edit-ps?key=YOUR_API_KEY&tool=claude-code" | iex

Notes

  • All MCP servers use your OpenAdapter API key and bill against your normal plan quota.
  • The installer writes the MCP server config into the target client (e.g. ~/.claude.json for Claude Code).
  • For OpenCode, swap tool=claude-code with tool=opencode in any of the URLs above.

On this page