Configuring MCP Servers
Last updated
Last updated
Utilizing MCP servers will increase your token useage. Cline offers the ability to restrict or disable MCP server functionality as desired.
Click the "MCP Servers" icon in the top navigation bar of the Cline extension.
Select the "Installed" tab, and then Click the "Advanced MCP Settings" link at the bottom of that pane.
Cline will open a new settings window. find Cline>Mcp:Mode
and make your selection from the dropdown menu.
Each MCP server has its own configuration panel where you can modify settings, manage tools, and control its operation. To access these settings:
Click the "MCP Servers" icon in the top navigation bar of the Cline extension.
Locate the MCP server you want to manage in the list, and open it by clicking on its name.
Click the Trash icon next to the MCP server you would like to delete, or the red Delete Server button at the bottom of the MCP server config box.
NOTE: There is no delete confirmation dialog box
Click the Restart button next to the MCP server you would like to restart, or the gray Restart Server button at the bottom of the MCP server config box.
Click the toggle switch next to the MCP server to enable/disable servers individually.
To set the maximum time to wait for a response after a tool call to the MCP server:
Click the Network Timeout
dropdown at the bottom of the individual MCP server's config box and change the time. Default is 1 minute but it can be set between 30 seconds and 1 hour.
Settings for all installed MCP servers are located in the cline_mcp_settings.json
file :
Click the MCP Servers icon at the top navigation bar of the Cline pane.
Select the "Installed" tab.
Click the "Configure MCP Servers" button at the bottom of the pane.
The file usees a JSON format with a mcpServers
object containing named server configurations:
Example of MCP Server config in Cline (STDIO Transport)
MCP supports two transport types for server communication:
Used for local servers running on your machine:
Communicates via standard input/output streams
Lower latency (no network overhead)
Better security (no network exposure)
Simpler setup (no HTTP server needed)
Runs as a child process on your machine
For more in-depth information about how STDIO transport works, see MCP Transport Mechanisms.
STDIO configuration example:
Used for remote servers accessed over HTTP/HTTPS:
Communicates via Server-Sent Events protocol
Can be hosted on a different machine
Supports multiple client connections
Requires network access
Allows centralized deployment and management
For more in-depth information about how SSE transport works, see MCP Transport Mechanisms.
SSE configuration example:
After configuring an MCP server, Cline will automatically detect available tools and resources. To use them:
Type your request in Cline's conversation window
Cline will identify when an MCP tool can help with your task
Approve the tool use when prompted (or use auto-approval)
Example: "Analyze the performance of my API" might use an MCP tool that tests API endpoints.
Common issues and solutions:
Server Not Responding: Check if the server process is running and verify network connectivity
Permission Errors: Ensure proper API keys and credentials are configured in your mcp_settings.json
file.
Tool Not Available: Confirm the server is properly implementing the tool and it's not disabled in settings
Slow Performance: Try adjusting the network timeout value for the specific MCP server