kimss
Kimss — Secure AI Gateway for Autonomous Agents
Track, govern, and secure autonomous agents with exactly 1 line of code. Zero data-plane refactoring required.
Kimss is a Model-Agnostic Enterprise AI Gateway and Governance Control Plane with a dual-listener inbound proxy (OpenAI + Anthropic). Keep the native SDK you already use — swap the base URL, add an Agent ID header, and every call gets identity, an audit trail, and a kill switch. Kimss never hosts your models (BYOI).
AI coding assistants: read the canonical control-plane
AI_INTEGRATION.mdfirst (local mirror: AI_INTEGRATION.md).
OpenAI
from openai import OpenAI
client = OpenAI(
base_url="https://api.kimss.ai/v1",
api_key="kimss_workspace_key",
)
response = client.chat.completions.create(
model="custom:kimss-gpt-5-3",
messages=[{"role": "user", "content": "Execute audit."}],
extra_headers={"X-Kimss-Agent-Id": "enterprise_auditor"},
)Anthropic
from anthropic import Anthropic
client = Anthropic(
base_url="https://api.kimss.ai",
api_key="kimss_workspace_key",
)
response = client.messages.create(
model="custom:kimss-claude-3-5",
max_tokens=1024,
messages=[{"role": "user", "content": "Execute audit."}],
extra_headers={"X-Kimss-Agent-Id": "enterprise_auditor"},
)Or zero-code:
OPENAI_BASE_URL="https://api.kimss.ai/v1"
OPENAI_API_KEY="kimss_..."
# or
ANTHROPIC_BASE_URL="https://api.kimss.ai"
ANTHROPIC_API_KEY="kimss_..."Developer tier (Always Free): 25,000 governed requests/month · Get a key
Inbound (your app → Kimss) | Vaulted BYO (Kimss → your provider) |
OpenAI SDK → | OpenAI, Azure AI Foundry, Anthropic, DeepSeek, custom vLLM |
Anthropic SDK → | Internal MCP servers (Control Plane registration) |
Agent attribution via |
flowchart LR
App[Your_app_or_agent] --> GW["Kimss_Gateway"]
GW --> Model[Vaulted_provider]
GW --> Trail[Governed_audit_trail]3-step setup
1. Sign In & Vault
Log into Kimss AI. Open Governance → Connected Infrastructure / Provider Vault and vault your model provider endpoint + key.
2. Mint Key
On the Gateway tab, Generate Key. Copy the kimss_... Control-Plane workspace key once. Same keys under Governance → API Keys.
3. Route Traffic (zero refactoring)
Point your OpenAI client at https://api.kimss.ai/v1 or your Anthropic client at https://api.kimss.ai, set the key, and add X-Kimss-Agent-Id (see hero snippets).
Step-by-step: GETTING_STARTED.md · 5-minute tutorial: kimss-ai/kimss-python-quickstart · control-plane OpenAPI: kimss-ai/kimss-control-plane.
Related MCP server: ModelBound
Control plane (DevOps) — optional pip install kimss
The kimss package is an infrastructure management client — not an inference SDK. Prefer the OpenAI gateway for all chat/completions.
Concern | How |
Register external agent |
|
Report BYO usage |
|
Vault endpoint + token cap | REST |
Kill switch | Governance → Agents, or |
Article 12–style audit | Gateway → Recent calls; |
MCP sync | Control Plane / Connected Infrastructure (UI registration) |
pip install kimssInference wrappers (agents.run, chat, models.create, …) are deprecated — see CHANGELOG.md.
Optional: MCP for IDEs
Cursor / Windsurf / Claude Desktop can run kimss-mcp-server (pip install 'kimss[mcp]' or uvx --from kimss[mcp] kimss-mcp-server). MCP inference tools are deprecated; use the OpenAI gateway from application code. Plugin layout: .cursor-plugin/plugin.json.
Examples
See examples/00_gateway_proxy.py (OpenAI) and examples/00b_anthropic_proxy.py (Anthropic).
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityFmaintenanceMCP server that exposes 300+ AI agents as tools via a single API key. Supports listing agents, invoking any agent with chat-completion style messages, checking agent health, and retrieving platform statistics.53

ModelBoundofficial
AlicenseAqualityBmaintenanceLocal-first MCP server for agent skills. Validate, lint, diff, and convert agent skill files across Cursor, Claude, Kiro, Windsurf, VS Code, and Amazon Q — no account required. Optional cloud sync with ModelBound.152491MIT- AlicenseAqualityAmaintenanceMCP server that turns Kimi K2.6 Turbo into an agentic coding assistant with tools for file operations, shell commands, and code search.42MIT
- AlicenseNot gradedqualityDmaintenanceMCP server that provides file operations and Moonshot API-powered tools (reasoning, code review, testing, research, web search, agent) for Kimi K2.5, requiring only a Moonshot API key.2681MIT
Related MCP Connectors
Official MCP server for Lovable, the AI-powered full-stack app builder.
Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kimss-ai/kimss-python-sdk'
If you have feedback or need assistance with the MCP directory API, please join our Discord server