Quick Start: How to Set Up Your First MCP Server
Simply add the following configuration file to make the Linear MCP server available to your agents:- For workspace-specific access: Add to the root of your workspace
- For global access: Add to your
~/.continue
directory
.continue/mcpServers/linear.yaml
Adding an MCP server from the Hub
You can also add an MCP server directly from the Continue Hub. Continue pulls directly from the official MCP registry at registry.modelcontextprotocol.io to provide a one-click install experience for popular MCP servers.Using .mcp.json
from Claude, Cursor, Cline, etc
If you have an existing .mcp.json
file from Claude, Cursor, Cline, or any other agent that supports the spec, .continue/mcpServers
directory and Continue will automatically pick it up.
Configuring secrets
For MCP servers that require secret values, such as API keys, you use secrets stored in Continue Hub, or directly set the value:".continue/mcpServers/supabase.yaml
Advanced
Pointing to a different MCP registry
You can use theregistryUrl
property to point to a different MCP registry:
.continue/mcpServers/linear.yaml
How to Configure MCP Servers
To set up your own MCP server, read the MCP quickstart and then create anmcpServers
block or add a local MCP
server block to your config file:
config.yaml
How to Configure MCP Server Properties
MCP blocks follow the established syntax for blocks, with a few additional properties specific to MCP servers.name
: A display name for the MCP server.type
: The type of the MCP server:sse
,stdio
,streamable-http
command
: The command to run to start the MCP server.args
: Arguments to pass to the command.env
: Secrets to be injected into the command as environment variables.
namespace
: The namespace of the MCP server, e.g.app.linear/linear
.registryUrl
: (Optional) The URL of the MCP registry to pull from. Defaults tohttps://registry.modelcontextprotocol.io
.