Documentation

Run it. Point your SDK at it. Ship.

AdaptiveAPI is a multilingual proxy you self-host. The reference below walks through running the stack locally, creating a route, and wiring up OpenAI, Anthropic, MCP, or any HTTP+JSON API. Deploy notes and a full configuration reference live at the end.

How the pieces fit together

The API is a .NET 10 minimal API. It exposes four request surfaces. /v1/<route>/ for OpenAI-shaped traffic, /anthropic/v1/<route>/ for Anthropic, /mcp/<route> for MCP servers, and /generic/<route>/ for any other JSON API you describe in route config.

Each surface speaks the upstream wire format byte for byte. The translation pipeline only touches the human-language fields. Identifiers, schemas, streaming framing, and tool argument keys stay verbatim. The admin UI sits at /admin and is served by a Vue 3 build.

What you need before you start