Skip to main content
MCP Gateways are the primary interface for exposing Noorle capabilities to MCP clients. Each gateway runs as a separate instance with its own configuration, capabilities, and authentication.

What is an MCP Gateway?

An MCP (Model Context Protocol) Gateway is a hosted endpoint that:
  • Exposes tools from attached capabilities (built-in, plugins, and connectors)
  • Implements the MCP protocol for seamless client integration
  • Provides SSE (Server-Sent Events) and HTTP transports
  • Supports authentication via API keys or JWT tokens
  • Manages request routing and tool execution
Think of it as your personal AI tool server.

Creating an MCP Gateway

1

Navigate to Gateways

In the Console, click Gateways in the left sidebar.
2

Click Create Gateway

Click the Create Gateway button in the top right.
3

Configure Basic Settings

Fill in the form:
  • Name - Unique identifier for your gateway (e.g., “Claude Desktop”)
  • Description - Optional human-readable notes
  • Enable Authentication - Require API key or JWT for access (recommended for production)
Click Create Gateway.
4

Note Your Endpoint URL

Your gateway is now created with a unique ID. The MCP Endpoint URL is:
Use this to configure your MCP client.

Attaching Capabilities

Capabilities define what tools your gateway exposes. You can attach:
  • Built-in Capabilities - Pre-configured services (Web Search, Code Runner, etc.)
  • Plugins - Custom WebAssembly tools you’ve created
  • Connectors - REST APIs, MCP registry services, or custom MCP servers

To Attach a Capability

  1. Open your gateway settings
  2. Click the Capabilities tab
  3. Click Attach Capability
  4. Choose capability type (Built-in, Plugin, or Connector)
  5. Select from available options
  6. Configure optional per-gateway settings
  7. Click Save
Some capabilities like Computer are Agent-only and cannot be attached to MCP gateways. These are restricted to agent execution.

Gateway Specifications

Gateway specifications control advanced behavior through a JSON configuration. Access these in Gateway Settings > Specifications.

Key Specification Fields

Omni Tool Configuration

Omni Tool uses LLM-based analysis to automatically discover the right tool from your attached capabilities. Users make natural language requests instead of choosing specific tools.

Visibility Modes

Configuration Example

Authentication

Requiring Authentication

By default, MCP gateways are public. To restrict access:
  1. Open gateway settings
  2. Toggle Require Authentication
  3. Choose authentication method:
    • API Key - Static key (easiest for development)
    • JWT Token - Time-bound tokens (better for production)
    • Both - Accept either method

Using API Keys

  1. In your gateway settings, click API Keys
  2. Click Generate API Key
  3. Store the key safely (shown only once)
  4. Pass in requests via X-API-Key: ak-... header

Using JWT Tokens

  1. In your gateway settings, click JWT Configuration
  2. Configure issuer, audience, and public key
  3. Your MCP client will validate tokens using the public key

Gateway Endpoints

MCP Protocol Endpoint

Supports:
  • SSE Transport - Server-Sent Events (recommended for browsers)
  • HTTP Transport - Standard HTTP requests with /tools, /resources, /prompts endpoints

Status & Health

Returns gateway health and configuration metadata.

Best Practices

Development

  • Use public gateways for early testing
  • Enable request logging to debug issues
  • Attach only capabilities you need

Production

  • Enable authentication (API Key or JWT)
  • Set reasonable rate limits
  • Monitor request patterns in usage dashboard
  • Use meaningful names for easy identification
  • Document attached capabilities in the description

Security

  • Rotate API keys regularly
  • Use JWT tokens with short expiration times
  • Audit attached capabilities for permissions
  • Restrict sensitive connectors to trusted clients
  • Monitor for unusual activity via request logs

Monitoring & Troubleshooting

Check Gateway Status

  1. Go to gateway settings
  2. View Status section
  3. See recent request metrics and error rates

Debug Issues

  1. Enable Request Logging in specifications
  2. Check logs in Activity tab
  3. Verify capabilities are properly attached
  4. Test endpoint directly with curl:

Common Issues

Advanced Configuration

Custom Headers

Set global headers applied to all outbound requests from this gateway:

Request/Response Transformation

Transform tool requests and responses using JSONPath:

API Access

Create or manage gateways programmatically using the Admin API:
See API Documentation for complete reference.

Next Steps