Configure Custom MCP in Enter to Connect Your Agent to Everything

Configure Custom MCP in Enter to Connect Your Agent to Everything

Enter now supports user-configured MCP Servers, allowing your Agent to directly call external services like Notion, Supabase, Context7, and more. This guide walks you through how to add and manage MCP configurations in Enter.

AnnouncementChris at Enter·

What is MCP?

MCP (Model Context Protocol) is an open protocol standard that allows AI Agents to connect to and use external tools and data sources. Think of it as a "universal plug" for your Agent — by configuring an MCP Server, your Enter Agent can seamlessly interact with third-party services like Supabase and Notion, fetching data and performing actions to greatly expand your Agent's capabilities.

In Enter, you can add an MCP Server with a simple JSON configuration — no complex development work required.

Where to Find the MCP Configuration Entry

Enter provides multiple entry points for managing MCP configurations. Choose whichever method suits your workflow.

Option 1: Via the Agent Panel

  1. Open your project and click the Agent Settings icon in the interface.
  1. In the panel that opens, find MCPs — you'll see MCP-related configuration options there.

Option 2: Via the MCPs Section in the Agent Panel

  1. Open the Agent Panel, which displays all tools available to the Agent, including sections for MCPs, Skills and more in the future.
  2. Find the MCPs section to see the list of currently configured MCP Servers and the add button.

Adding an MCP Server

Follow these steps to manually add an MCP Server from the MCPs section:

  1. Click the Add MCP button.
  1. In the configuration form that appears, enter the MCP Server's JSON configuration. The format is as follows:
{ 
  "mcpServers": { 
    "server-name": { 
      "url": "https://your-mcp-server-url/mcp", 
      "headers": { 
        "Authorization": "Bearer YOUR_API_KEY" 
      }
    } 
  } 
}
  1. After confirming the JSON format is correct, click the Connect button.
  2. Enter will automatically attempt to connect to the MCP Server. Once connected, the status will display as connected.

Managing Existing MCP Servers

After adding MCP Servers, you can view all configured ones in the MCP list. Each MCP entry displays the following information:

  • Name: The MCP Server's name
  • Tools: The list of tools provided by the Server
  • Connection Status: The current connection status

Available Actions

For each MCP Server, you can perform the following actions:

  • Enable/Disable: Toggle whether the Agent uses this MCP
  • Delete: Remove an MCP configuration you no longer need
If you need to modify an MCP's configuration (e.g., change the API Key or URL), we recommend deleting the existing MCP first and then re-adding it with the updated configuration.

Handling MCP Servers That Require OAuth

Some MCP Servers (such as Notion) require OAuth authentication. Enter has built-in support for the OAuth authentication flow.

  1. When you connect to an MCP Server that requires OAuth, the status will display as Connect.
  1. Enter will automatically redirect you to the corresponding service's authorization page to complete the authorization.
  2. After authorization is complete, return to Enter and the MCP connection will be established automatically. If the connection doesn't recover automatically, you can click Connect again to reconnect.

Viewing and Using MCP Tools in Chat

Once MCP is configured, your Agent can use these external tools directly in Chat.

Viewing Configured MCPs

You can ask the Agent in Chat which MCPs are currently configured for your project. For example:

"What MCPs do I have configured?"

The Agent will list all currently connected MCP Servers and the tools they provide.

Using MCP Tools

  1. In Chat conversations, the Agent will automatically recognize and call connected MCP Tools.
  2. When a tool is called, you can see the MCP Tool's icon and name, clearly showing which external service the Agent is using.
  1. To view MCP tool information, click the tool icon for details.

Common MCP Server Configuration Examples

Here are some configuration examples for popular services that you can copy and use directly.

Context7

{ 
  "mcpServers": { 
    "context7": { 
      "url": "https://mcp.context7.com/mcp", 
      "headers": { 
        "CONTEXT7_API_KEY": "YOUR_API_KEY" 
      } 
    } 
  } 
}

Notion

{ 
  "mcpServers": { 
    "notion": { 
      "url": "https://mcp.notion.com/mcp" 
    } 
  } 
}

Supabase

{ 
  "mcpServers": { 
    "supabase": { 
      "url": "https://mcp.supabase.com/mcp" 
    } 
  } 
}

Important: Only URL-Based MCP Connections Are Supported

The MCP protocol defines two main transport methods, corresponding to two different configuration formats. Enter currently only supports one of them — please make sure you understand the difference before configuring.

Supported: url Method (Streamable HTTP)

This method connects to MCP Servers remotely via the HTTP protocol, using the "url" field in the configuration to point to the service endpoint. This is also the modern standard transport method recommended by the MCP protocol.

{ 
  "mcpServers": { 
    "server-name": { 
      "url": "https://mcp.example.com/mcp", 
      "headers": { 
        "Authorization": "Bearer YOUR_API_KEY" 
      } 
    } 
  } 
}

Enter supports this method, including compatibility with SSE (Server-Sent Events) Legacy mode.

Not Supported: command Method (stdio)

This method requires launching a subprocess on the user's local machine and communicating with the MCP Server via standard input/output (stdin/stdout). It uses the "command" and "args" fields in the configuration.

{ 
  "mcpServers": { 
    "server-name": { 
      "command": "npx", 
      "args": ["-y", "some-mcp-server"] 
    } 
  } 
}

This method is commonly used by desktop clients like Claude Desktop and Cursor, which run on the user's local machine and can directly launch local processes. As a web platform, Enter cannot launch local processes on the user's device, so command-based MCP configurations are not currently supported.

How to Tell if an MCP Server Can Be Used in Enter

Check the MCP Server's official documentation to confirm whether it provides an HTTP URL endpoint (typically a URL starting with https://). If the documentation only provides command/npx-based configurations, that MCP Server cannot be used directly in Enter at this time.

Many popular MCP Servers offer both stdio and HTTP access methods — simply choose the configuration with the "url" field.

Summary

With MCP configuration, your Enter Agent can easily connect to various external tools and data sources, greatly expanding its capabilities. Whether it's querying Notion documents, managing Supabase databases, or connecting to any other service that supports the MCP protocol, everything can be done with a simple JSON configuration.

Head over to Enter now and try configuring MCP for your Agent!


You might also like

Curated automatically from similar topics to keep you in the same flow.

Enter Pro is Now Part of Converge AI
Announcement

Enter Pro is Now Part of Converge AI

Enter Pro joins Converge AI. One account, one platform — access Enter Pro, Framia Pro, and more AI products all in one place.

Libby at Enter
Enter i18n: How to Build a Multilingual Website Without Touching a Config File
Announcement

Enter i18n: How to Build a Multilingual Website Without Touching a Config File

Enter i18n is a new extension panel in Enter Infra Stack that automates your entire internationalization workflow. Detect your framework, install i18n, manage translations visually, and rebuild — without touching a single config file.

Chichi
Enter Analytics Is Live — Build with AI. Track with AI. Grow with AI.
Announcement

Enter Analytics Is Live — Build with AI. Track with AI. Grow with AI.

Enter Analytics is the first native AI analytics platform for vibe coding. Auto-track users, custom events & get AI insights—zero setup required. Start now.

Pauline at Enter
DeepSeek V4 Pro + 4 New Models Now Live in Enter Code + AI All
Announcement

DeepSeek V4 Pro + 4 New Models Now Live in Enter Code + AI All

Enter Code and AI All just expanded their model roster with 5 new additions — from a 1M-context cost killer to a frontier Computer-Use model and a 12-hour autonomous Agent Swarm. Now available in both Enter Code and Enter Pro — no API key required.

Chichi
GPT-Image-2 Is Live on AI ALL
Announcement

GPT-Image-2 Is Live on AI ALL

GPT-Image-2 by OpenAI is now live on AI ALL. Generate perfect text in images, multilingual designs & more. Try the most capable AI image model today.

Pauline at Enter
Claude Opus 4.7 Is Now Live in Enter AI All
Announcement

Claude Opus 4.7 Is Now Live in Enter AI All

Anthropic's most powerful model is now available to all Enter Pro users through Enter AI All. Claude Opus 4.7 brings adaptive reasoning, frontier coding with self-verification, 3.75MP vision processing, and a 1 million token context window.