Kong AI Gateway is a connectivity and governance layer for AI traffic built on Kong Gateway, covering LLM calls, MCP, and agent-to-agent traffic. The AI Proxy plugin arrived in Kong Gateway 3.6 and supports OpenAI, Azure OpenAI, Amazon Bedrock, Anthropic, Gemini, Vertex AI, Cohere, Mistral, Hugging Face, Llama, xAI, Alibaba Cloud DashScope, Cerebras, DeepSeek, Ollama, Databricks, and vLLM. Around two dozen AI plugins exist, spanning proxying, prompt engineering, guardrails, PII sanitisation, semantic caching, RAG injection, and LLM-as-judge. On Konnect Plus, AI Gateway is priced at $100 per month per unique LLM model with five included, and the enterprise AI plugins are paid add-ons; Enterprise removes the model limit and includes the plugins.
- Kong AI Gateway is plugins on Kong Gateway, not a separate binary or service.
ai-proxylanded in Kong Gateway 3.6 and covers 15+ LLM providers behind one schema.- Roughly two dozen AI plugins exist, and the AI plugin family is Enterprise / Konnect, not free OSS.
- Konnect Plus: $100 per month per unique LLM model, five included. Enterprise: no model limit.
- Konnect Plus request pricing: 1M included, $200 per additional 1M, capped at 10M per month.
- It also governs MCP and agent-to-agent traffic, which most LLM-only gateways do not.
What Kong AI Gateway is
Kong describes it as a connectivity and governance layer for AI-native applications built on top of Kong Gateway. That phrasing is accurate and worth taking literally: there is no separate Kong AI Gateway product to install. You run Kong Gateway, you enable AI plugins on routes and services, and the result is what the marketing calls an AI gateway.
The consequence is a hard fork in the decision. If your platform team already runs Kong in front of your APIs, adding LLM traffic to it is a configuration change on infrastructure you operate, monitor, and know how to debug. If you do not run Kong, adopting it to route model calls means adopting an API gateway, and that is a much larger commitment than pointing a base URL at a hosted proxy.
The plugin catalogue
There are roughly two dozen AI plugins. They compose: a single route can proxy to a load-balanced pool, strip PII on the way in, check the prompt against a semantic deny list, serve from a semantic cache, and score the response with an LLM judge.
| Job | Plugins |
|---|---|
| Proxying and routing | AI Proxy, AI Proxy Advanced (multi-provider load balancing) |
| MCP and agents | AI MCP Proxy, AI MCP OAuth2, AI A2A Proxy |
| Prompt engineering | AI Prompt Template, AI Prompt Decorator |
| Input and output policing | AI Prompt Guard, AI Semantic Prompt Guard, AI Semantic Response Guard |
| Third-party guardrails | AI Azure Content Safety, AI AWS Guardrails, AI GCP Model Armor, AI Lakera Guard, AI Custom Guardrail |
| Data protection | AI PII Sanitizer (20 categories, 9 languages) |
| Cost and performance | AI Semantic Cache, AI Rate Limiting Advanced, AI Prompt Compressor |
| Transformation and retrieval | AI Request Transformer, AI Response Transformer, AI RAG Injector |
| Evaluation | AI LLM as Judge |
Providers AI Proxy speaks
The AI Proxy plugin has a min_version of Kong Gateway 3.6. Its provider list as of August 2026:
- OpenAI, Azure OpenAI
- Anthropic
- Amazon Bedrock
- Gemini, Vertex AI
- Cohere, Mistral, Hugging Face
- Llama, Ollama, vLLM (self-hosted)
- xAI, Alibaba Cloud DashScope, Cerebras, DeepSeek
- Databricks
The self-hosted three (Llama, Ollama, vLLM) are the ones that make Kong interesting for regulated deployments: the same policy layer covers a commercial API and your own inference server, with no code change in the client.
A worked configuration
Declarative config, applied with deck or via the Admin API. This routes one path to Anthropic through AI Proxy, with a prompt guard and rate limiting on top.
_format_version: "3.0"
services:
- name: llm
url: http://localhost:32000
routes:
- name: chat
paths:
- /chat
plugins:
- name: ai-proxy
config:
route_type: llm/v1/chat
auth:
header_name: x-api-key
header_value: ${ANTHROPIC_API_KEY}
model:
provider: anthropic
name: claude-sonnet-5
- name: ai-prompt-guard
config:
deny_patterns:
- ".*ignore (all )?previous instructions.*"
allow_all_conversation_history: false
- name: ai-rate-limiting-advanced
config:
llm_providers:
- name: anthropic
limit: [200000]
window_size: [3600]
The shape to notice: route_type normalises the request into Kong's own schema, which is what lets AI Proxy Advanced load balance the same route across two providers later without touching the client. That normalisation is the actual value of the plugin, more than the auth handling.
What it costs
| Free trial | Plus | Enterprise | |
|---|---|---|---|
| Price | $0 for 30 days | Per gateway, monthly | Custom, billed annually |
| API requests | No gateway limits | 1M included, $200 per additional 1M, max 10M/month | Custom, volume discounts |
| AI Gateway models | Enterprise functionality free | 5 unique LLM models, $100/month per model | No limit |
| Enterprise AI plugins | Included in trial | Paid add-ons | Included |
| Analytics retention | 30 days | Plan-dependent | Custom |
Self-managed Kong Gateway Enterprise is a separate licensing conversation from Konnect. If you already have that contract, the AI plugins may be inside it; confirm with your account team rather than assuming from the Konnect page.
When Kong is right
Right when
- Kong is already your API gateway. The marginal cost of governing LLM traffic there is a config change.
- You need one policy engine over REST, gRPC, LLM, MCP, and agent-to-agent traffic.
- Your compliance boundary means the gateway must run in your own network, in your own Kubernetes.
- You mix commercial APIs with self-hosted vLLM or Ollama and want identical policy over both.
Wrong when
- You do not already run Kong. Adopting an API gateway to route model calls is a large answer to a small question.
- You want a hosted wallet. Kong proxies your provider accounts; it does not sell you tokens.
- Your model catalogue is wide and your traffic is thin. Per-model pricing on Plus punishes exactly that shape.
- You need it working this afternoon. LiteLLM or a hosted gateway is minutes; Kong is a platform project.
Questions people ask
What is Kong AI Gateway?
It is a family of AI plugins on top of Kong Gateway that turns an existing API gateway into a governance layer for LLM, MCP, and agent-to-agent traffic. The core is the AI Proxy plugin, which normalises requests to fifteen-plus LLM providers into one schema; around two dozen further plugins add prompt guards, guardrails, PII sanitisation, semantic caching, RAG injection, and evaluation.
Is Kong AI Gateway free or open source?
The AI plugin family is listed under Enterprise and Konnect rather than as free open-source plugins. Kong Konnect sells the enterprise AI plugins as paid add-ons on the Plus tier and includes them on Enterprise. Kong Gateway itself has an open-source edition, but do not plan an AI Gateway deployment assuming the AI plugins come with it.
How much does Kong AI Gateway cost?
On Kong Konnect Plus, AI Gateway is priced at $100 per month per unique LLM model with five models included, and API requests are 1 million included with $200 per additional million up to a 10 million monthly cap. Enterprise is custom, billed annually, with no limit on unique LLM models and the enterprise AI plugins included. A 30-day free trial gives enterprise functionality with no gateway limits.
Which LLM providers does Kong AI Proxy support?
As of August 2026: OpenAI, Azure OpenAI, Amazon Bedrock, Anthropic, Gemini, Vertex AI, Cohere, Mistral, Hugging Face, Llama, xAI, Alibaba Cloud DashScope, Cerebras, DeepSeek, Ollama, Databricks, and vLLM. Kong notes that capability support and limitations vary by provider, so check the individual provider reference page for the feature you depend on.
What Kong Gateway version do I need for AI Proxy?
Kong Gateway 3.6 or newer. That is the min_version recorded on the AI Proxy plugin page. Individual AI plugins added later have higher minimums, so check each plugin you intend to enable rather than assuming 3.6 covers the whole family.
Kong AI Gateway or LiteLLM?
LiteLLM if the job is only LLM proxying and you want it running today at no licence cost. Kong if you already operate Kong, need one policy engine across REST, LLM, MCP, and agent-to-agent traffic, and want guardrails, semantic caching, and PII sanitisation as configuration rather than code. The deciding question is almost always whether Kong is already in your stack.
Sources
Every figure above was read from these pages on August 2026. Vendors reprice without notice; if you find a stale number, tell us.
- Kong AI Gateway documentation positioning, LLM/MCP/A2A scope, plugin groups
- Kong AI Proxy plugin min_version 3.6 and the provider list
- Kong AI plugin index the full AI plugin catalogue
- Kong Konnect pricing per-model AI Gateway pricing and request tiers