WHY GARTNER’S “CONTEXT MESH” CHANGES EVERYTHING AI CONNECTIVITY: THE ROAD AHEAD DON’T MISS API + AI SUMMIT 2026 SEPT 30 – OCT 1
  • Why Kong
    • Explore the unified API Platform
        • BUILD APIs
        • Kong Insomnia
        • API Design
        • API Mocking
        • API Testing and Debugging
        • MCP Client
        • RUN APIs
        • API Gateway
        • Context Mesh
        • AI Gateway
        • Event Gateway
        • Kubernetes Operator
        • Service Mesh
        • Ingress Controller
        • Runtime Management
        • DISCOVER APIs
        • Developer Portal
        • Service Catalog
        • MCP Registry
        • GOVERN APIs
        • Metering and Billing
        • APIOps and Automation
        • API Observability
        • Why Kong?
      • CLOUD
      • Cloud API Gateways
      • Need a self-hosted or hybrid option?
      • COMPARE
      • Considering AI Gateway alternatives?
      • Kong vs. Postman
      • Kong vs. MuleSoft
      • Kong vs. Apigee
      • Kong vs. IBM
      • GET STARTED
      • Sign Up for Kong Konnect
      • Documentation
      • FOR PLATFORM TEAMS
      • Developer Platform
      • Kubernetes and Microservices
      • Observability
      • Service Mesh Connectivity
      • Kafka Event Streaming
      • FOR EXECUTIVES
      • AI Connectivity
      • Open Banking
      • Legacy Migration
      • Platform Cost Reduction
      • Kafka Cost Optimization
      • API Monetization
      • AI Monetization
      • AI FinOps
      • FOR AI TEAMS
      • AI Governance
      • AI Security
      • AI Cost Control
      • Agentic Infrastructure
      • MCP Production
      • MCP Traffic Gateway
      • FOR DEVELOPERS
      • Mobile App API Development
      • GenAI App Development
      • API Gateway for Istio
      • Decentralized Load Balancing
      • BY INDUSTRY
      • Financial Services
      • Healthcare
      • Higher Education
      • Insurance
      • Manufacturing
      • Retail
      • Software & Technology
      • Transportation
      • See all Solutions
  • Pricing
      • DOCUMENTATION
      • Kong Konnect
      • Kong Gateway
      • Kong Mesh
      • Kong AI Gateway
      • Kong Event Gateway
      • Kong Insomnia
      • Plugin Hub
      • EXPLORE
      • Blog
      • Learning Center
      • eBooks
      • Reports
      • Demos
      • Customer Stories
      • Videos
      • EVENTS
      • API + AI Summit
      • Webinars
      • User Calls
      • Workshops
      • Meetups
      • See All Events
      • FOR DEVELOPERS
      • Get Started
      • Community
      • Certification
      • Training
      • COMPANY
      • About Us
      • We're Hiring!
      • Press Room
      • Contact Us
      • Kong Partner Program
      • Enterprise Support Portal
      • Documentation
  • Login
  • Book Demo
  • Get Started
Blog
  • AI Gateway
  • AI Security
  • AIOps
  • API Security
  • API Gateway
|
    • API Management
    • API Development
    • API Design
    • Automation
    • Service Mesh
    • Insomnia
    • View All Blogs
  1. Home
  2. Blog
  3. Engineering
  4. Leveraging the MCP Registry in Kong Konnect for Dynamic Tool Discovery
Engineering
March 12, 2026
6 min read

Leveraging the MCP Registry in Kong Konnect for Dynamic Tool Discovery

Hugo Guerrero
Principal Tech PMM, Kong

As enterprises start deploying AI agents into real systems, a new architectural challenge is emerging. Agents need a reliable way to discover tools, services, and capabilities dynamically, instead of relying on hardcoded integrations.

This is where the Model Context Protocol (MCP) ecosystem is rapidly evolving. MCP servers expose tools and capabilities that AI agents can use. However, once organizations begin deploying multiple MCP servers across environments, the question becomes clear.

How do agents discover the right MCP server at runtime?

To address this, Kong has launched a new capability that is currently in Tech Preview: Kong MCP Registry in Kong Konnect.

This capability allows developers to dynamically manage how their AI agents discover and consume tools, moving away from rigid, hardcoded configurations to a flexible, programmatic approach.

In this article, we walk through a practical example showing how an AI agent can:

  • Discover MCP servers dynamically
  • Select the appropriate capability for a task
  • Execute actions using those discovered tools

The result is a more scalable pattern for building agentic systems that evolve without redeploying the agent itself.

Tool discovery for AI agents

In early agent implementations, tools are often statically configured inside the agent.

For example:

{
  "mcpServers": {
    "weatherServer": {
      "command": "uv",
      "args": [
        "run",
        "weather_server.py"
      ]
    },
    "githubServer": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-github"
      ]
    },
    "remoteApiServer": {
      "url": "https://api.example.com",
      "headers": {
        "Authorization": "Bearer sk-xxx"
      }
    }
  }
}

This works for simple prototypes. It breaks down quickly in enterprise environments because:

  • New tools are constantly added
  • Tools evolve independently
  • Different environments expose different capabilities
  • Agents should not need redeployment every time a new tool appears

A better model is dynamic tool discovery.

Instead of embedding tools directly in the agent, agents should be able to ask:

"What tools exist that can help me answer this request?"

This is exactly the role of an MCP registry.

Introducing the MCP Registry in Kong Konnect

Located natively within the Kong Konnect Catalog menu, the MCP Registry provides a centralized hub to register both local and remote MCP servers.

  • Group and Organize: You can create one or several registries to group your MCP servers based on specific metadata.
  • Independent Access Control: This grouping enables you to handle servers independently and provide different access levels.
  • Standardized Implementation: The registry implements a REST API built in accordance with the specification from the Agentic AI Foundation’s (AAIF) official MCP registry, ensuring long-term compatibility with the MCP ecosystem.

From the Konnect UI, the MCP Registry appears as a new Catalog entry where users can create and manage registries.

Each registry groups MCP servers based on metadata such as:

  • Environment (development, staging, production)
  • Domain capabilities
  • Access boundaries
  • Team ownership

This allows organizations to manage MCP services independently while still enabling agent discovery.

For example, a Development MCP Registry may contain experimental tools or only be available for development purposes, while a production registry contains only approved services.

Additionally, instead of manually retrieving server connection details through the UI, applications and agents can query these registries programmatically using the REST API.

Enable MCP Registries in Catalog

MCP Registries in Catalog are currently available in Technical Preview via Konnect Labs.

  1. In the Konnect sidebar, navigate to Organizations.
  2. In the Organization sidebar, click Labs.
  3. Click Catalog - MCP Registry.
  4. Click the toggle at the top right to enable the integration.

You can access the MCP Registry by navigating to Catalog > MCP Registries in the sidebar.

Registering MCP servers

Within a registry, each MCP server is registered with comprehensive details, including:

  • Name
  • Description
  • Endpoint URL
  • Namespace
  • Version
  • Execution context (remote or local)

These MCP servers may be deployed in various environments:

  • Locally
  • On remote infrastructure
  • On serverless gateways
  • Behind API gateways

The registry confers a straightforward yet substantial advantage:

It establishes the definitive source of truth for agent capabilities.

Consequently, instead of requiring manual configuration, agents interact with the registry to dynamically ascertain their available functions.

Querying the registry programmatically

The MCP Registry exposes a REST API that implements the official MCP Registry OpenAPI specification, following the standard donated by Anthropic to the Agentic AI Foundation (AAIF) in December 2025. The specification allows flexibility in how registries are structured, so you can model them according to your organization’s governance needs.

This allows developers to:

  • Query available MCP servers
  • Search based on metadata
  • Retrieve connection details
  • Integrate registry discovery into agent workflows

Instead of navigating the UI, an agent can programmatically call the registry and retrieve the list of services.

For example:

GET /v0.1/servers?search=weather

The response contains structured information about matching MCP servers, including:

  • Name
  • Description
  • Endpoint
  • Namespace

This information allows agents to dynamically select the right tool.

Building an agent that uses the MCP Registry

To illustrate the power of this architecture, consider an AI agent built using the Volcano agent framework. Rather than hardcoding every possible tool into the agent's logic, the agent is configured with only a single URL: the endpoint for the MCP registry running on a local gateway instance.

The agent operates in a simple two-step flow:

  1. Search: It receives a user prompt and queries the registry to find MCP servers capable of handling that specific request.
  2. Execute: If a server is found, the agent parses the returned URL dynamically configures the MCP server, and executes the necessary action to process the prompt.
User Prompt
      │
      ▼
Agent Step 1
Search MCP Registry
      │
      ▼
Select Matching MCP Server
      │
      ▼
Agent Step 2
Execute Action Using MCP
      │
      ▼
Return Result

This design separates tool discovery from tool execution, which is a key pattern in scalable agent architectures.

The workflow in action

Let's look at how this dynamic discovery handles different scenarios based on the available tools in the registry.

Scenario 1: Executing an Available Tool

Step 1: Searching for MCP Servers

The agent begins by receiving a prompt.

Example:

Tell me a Chuck Norris joke about history

The agent sends a query to the MCP registry using a structured LLM step. This step returns information in a structured format, such as:

{
 name: "Chuck Norris Joke Server",
 description: "Generates Chuck Norris jokes",
 url: "https://gateway.example.com/mcp/jokes"
}

If no matching server is found, the agent stops.

If a match exists, the workflow proceeds to the next stage.

Step 2: Executing the MCP Action

Once a server is discovered, the agent dynamically configures the MCP connection using the returned server URL.

The agent then executes the action prompt using the selected MCP server.

Example workflow:

Prompt → Find Joke MCP Server
Prompt → Execute Joke Tool
Return Result

The response might look like:

After returning from World War II, Chuck Norris shook hands with history. The rest is history.

This demonstrates how the agent used registry discovery plus tool execution to produce a response.

Scenario 2: Handling Missing Capabilities

The system also behaves intelligently when capabilities do not exist.

For example, if a user asks the following:

What is the weather in Tokyo?

Initially, the registry does not contain any weather MCP servers.

The agent queries the registry and finds no matching capability.

The workflow stops with a clear response:

No MCP server found capable of handling this request.

This behavior is important. It prevents hallucinations and ensures the agent only acts when a trusted tool exists.

Scenario 3: Dynamically Adding New MCP Servers

This is where the registry shines. Without touching the agent's code, we can simply add a new tool to the environment.

We register a weather MCP server with the following metadata:

  • Name: Weather MCP
  • Namespace: weather
  • Description: Get weather for a city
  • Endpoint: weather MCP service
  • API: OpenWeather API v2.5

Once saved and published, this new weather service becomes immediately active on the developer registry. No code changes are required.

Now we run the same prompt again:

What is the weather in Tokyo?

This time, the workflow changes.

  1. The agent queries the registry
  2. It finds a matching weather MCP server
  3. The server URL is returned
  4. The agent executes the weather tool

The final response contains real weather data, including:

  • Temperature
  • Units
  • Weather conditions (for example, broken clouds)

The agent was able to perform a task it previously could not handle, simply because a new MCP server appeared in the registry.

This is the power of dynamic capability discovery.

Start building discoverable agent architectures

As AI agents move from experiments into production systems, the architecture around them needs to evolve. Hardcoding tools directly into agents does not scale in environments where services are constantly changing, capabilities are expanding, and governance matters.

The MCP Registry in Kong Konnect introduces a practical solution to this challenge. By centralizing the discovery of MCP servers, teams can give agents a single place to find capabilities at runtime. Agents no longer need to know every tool in advance. Instead, they can query the registry, identify the right service for the task, and execute it dynamically.

Get started today

If you want to explore this approach further, start by creating an MCP registry in Kong Konnect and registering your first MCP servers. Then build a simple agent that queries the registry and executes one of those tools.

Are you a Kong customer interested in participating in the Kong MCP Registry Tech Preview? To try it, enable it in Konnect Labs and contact your account team with any questions.

Once you see your agent discover and use a capability it did not know about before, you will start to understand the real power of registry-driven agent architectures.

MCPKong KonnectAgentic AI

More on this topic

Videos

PEXA’s Resilient API Platform on Kong Konnect

Videos

Building the Connectivity Layer for Agentic AI

See Kong in action

Accelerate deployments, reduce vulnerabilities, and gain real-time visibility. 

Get a Demo
Topics
MCPKong KonnectAgentic AI
Hugo Guerrero
Principal Tech PMM, Kong

Recommended posts

Kong Simplifies Multicloud Cloud Gateways with Managed Redis Cache

Product ReleasesMarch 12, 2026

Managed Redis cache is a turnkey "Shared State" add-on for Kong Dedicated Cloud Gateways. It is designed to combine the performance of an in-memory data store with the simplicity of a SaaS product. When you spin up a Dedicated Cloud Gateway in Kong

Amit Shah

AI Input vs. Output: Why Token Direction Matters for AI Cost Management

EnterpriseMarch 10, 2026

The Shifting Economic Landscape: The AI token economy in 2026 is evolving, and enterprise leaders must distinguish between low-cost input tokens and high-premium output tokens to maintain profitability. Agentic AI Financial Risks: The transition t

Dan Temkin

The Platform Enterprises Need to Compete? Kong Already Built It

EnterpriseFebruary 25, 2026

A Response to Gartner’s Latest Research We have crossed a threshold in the AI economy where the competitive advantage is no longer about access to data — it’s about access to context. The "context economy" has arrived, defined by a fundamental

Alex Drag

Practical Strategies to Monetize AI APIs in Production

EngineeringMarch 27, 2026

Traditional APIs are, in a word, predictable. You know what you're getting: Compute costs that don't surprise you Traffic patterns that behave themselves Clean, well-defined request and response cycles AI APIs, especially anything that runs on LLMs

Deepanshu Pandey

Kong MCP Registry: Connect AI Agents with the Right Tools

Product ReleasesFebruary 2, 2026

The Kong MCP Registry acts as a central directory for AI agents and clients to access services that provide context or take action. For AI agents, think of it as a combination of a "Service Catalog" and a "Developer Portal." It offers the metadata,

Jason Harmon

Configuring Kong Dedicated Cloud Gateways with Managed Redis in a Multi-Cloud Environment

EngineeringMarch 12, 2026

Architecture Overview A multicloud DCGW architecture typically contains three main layers. 1\. Konnect Control Plane The SaaS control plane manages configuration, plugins, and policies. All gateways connect securely to this layer. 2\. Dedicated C

Hugo Guerrero

Governing Claude Code: How To Secure Agent Harness Rollouts with Kong AI Gateway

EngineeringMarch 7, 2026

Claude Code is Anthropic's agentic coding and agent harness tool. Unlike traditional code-completion assistants that suggest the next line in an editor, Claude Code operates as an autonomous agent that reads entire codebases, edits files across mult

Alex Drag

Ready to see Kong in action?

Get a personalized walkthrough of Kong's platform tailored to your architecture, use cases, and scale requirements.

Get a Demo
Ask AI for a summary of Kong
Stay connected
    • Company
    • About Kong
    • Customers
    • Careers
    • Press
    • Events
    • Contact
    • Pricing
    • Legal
    • Terms
    • Privacy
    • Trust and Compliance
    • Platform
    • Kong AI Gateway
    • Kong Konnect
    • Kong Gateway
    • Kong Event Gateway
    • Kong Insomnia
    • Documentation
    • Book Demo
    • Compare
    • AI Gateway Alternatives
    • Kong vs Apigee
    • Kong vs IBM
    • Kong vs Postman
    • Kong vs Mulesoft
    • Explore More
    • Open Banking API Solutions
    • API Governance Solutions
    • Istio API Gateway Integration
    • Kubernetes API Management
    • API Gateway: Build vs Buy
    • Kong vs Apigee
    • Open Source
    • Kong Gateway
    • Kuma
    • Insomnia
    • Kong Community

Kong enables the connectivity layer for the agentic era – securely connecting, governing, and monetizing APIs and AI tokens across any model or cloud.

  • Japanese
  • Frenchcoming soon
  • Spanishcoming soon
  • Germancoming soon
© Kong Inc. 2026