Claude Code
Add the Humiris remote MCP at project scope in one terminal command.
Use one familiar API in your product, or give Claude Code, Cursor, Codex and other MCP clients the context to implement it with you.
Switch between application code, the live Humiris MCP, a project skill and a complete coding-agent prompt. Every example is ready to copy.
import OpenAI from "openai";
const humiris = new OpenAI({
apiKey: process.env.HUMIRIS_API_KEY,
baseURL: "https://api.humiris.ai/api/v1",
});
const response = await humiris.chat.completions.create({
model: "humiris/auto",
messages: [
{ role: "user", content: "Summarize this support case" },
],
});
console.log(response.choices[0].message.content);Choose your coding agent or IDE. Every client gets a focused setup, real logo, official documentation and a configuration you can copy.
Add the Humiris remote MCP at project scope in one terminal command.
Expose Humiris model search, routing and integration tools inside Codex.
Give Cursor Agent access to Humiris from a project MCP configuration.
Connect Cascade to the remote Humiris MCP from Windsurf settings.
Use Humiris from AI Assistant in IntelliJ, PyCharm, WebStorm and more.
Bring Humiris tools into Zed's agent panel through a context server.
Use Humiris with Copilot agent mode and install project-scoped skills.
Connect Google's terminal agent to the Humiris remote tool catalog.
Run claude mcp list after installation to verify the server.
claude mcp add --transport http humiris --scope project https://humiris.ai/api/mcp
Install focused Humiris skills using the open SKILL.md format. Your agent discovers the right workflow only when the task needs it.
mkdir -p .agents/skills/humiris curl -L https://humiris.ai/developers/skills/core.md \ -o .agents/skills/humiris/SKILL.md
InstallCopy the Markdown skill into your project.
Auto-discoverYour agent reads the SKILL.md when relevant.
Use itAsk the agent to build with Humiris.
This brief tells the agent what to inspect, how to protect your key, where to isolate the integration and what evidence to return.
Integrate Humiris into this repository as a production-ready AI gateway. First inspect the existing architecture, package manager, API layer and test setup. Then: 1. Use the existing OpenAI SDK when available; otherwise add its official SDK. 2. Read HUMIRIS_API_KEY only from the server environment. Never expose or log it. 3. Set the base URL to https://api.humiris.ai/api/v1. 4. Use humiris/auto as the default route, while making the model configurable. 5. Add one small adapter/service instead of coupling Humiris throughout the app. 6. Preserve current behavior, types, lint rules and UI conventions. 7. Add useful timeout/error handling and one real smoke or integration test. 8. Run the relevant checks. Report changed files, results and exact local setup steps. Do not claim success unless the code builds and the test passes.