Model Context Protocol x Continue

Model Context Protocol x Continue

Last week, Anthropic introduced the Model Context Protocol (MCP), a new open protocol that "enables seamless integration between LLM applications and external data sources and tools". Also last week, Continue added support for MCP! Let’s explore why MCP is well-suited for Continue and how you can use it to improve your AI-assisted coding experience.

Continue is the first client to offer full support for all MCP features

Perfect Alignment: MCP and Continue

MCP breaks down into four primary concepts—Resources, Prompts, Tools, and Sampling. This framework maps smoothly onto Continue's existing features:

Open standards and developer-owned tools are crucial for shaping how AI assists development. MCP represents the kind of community-driven initiative that will help us build this future, giving developers the ability to build and share custom AI coding assistants.

Setting Up MCP in Continue

Integrating MCP into Continue is just a quick config update. Start by setting up a local MCP server following the simple steps in their quickstart guide. Once set up, add the MCP Context Provider in your config.json as demonstrated in the snippet below:

{  
  “experimental”: {
    “modelContextProtocolServer”: {
      “transport”: {
        “type”: “stdio”,
        “command”: “uvx”,
        “args”: [“mcp-server-sqlite”, “--db-path”, “/Users/NAME/test.db”]
      }
    }
  }
}

~/.continue/config.json

In Continue, just type “@”, select “MCP” from the dropdown, and choose the resource for context.

Example MCP Servers

Anthropic has created a collection of reference implementations in their MCP servers repository, which can be directly used with Continue.

Here are some of the best examples we've seen:

  • Google Drive: Access and search files within Google Drive
  • Sentry: Retrieve and analyze issues from Sentry.io
  • Puppeteer: Automate browser tasks and perform web scraping
  • Slack: Manage channels and messaging
  • Brave Search: Conduct web and local searches using Brave's Search API

What's Next?

We're excited to see the developer community rally around open standards like MCP—it's an important step toward interoperable and powerful AI-assisted development tools. As we build further support for integration with MCP, we'd love to hear your thoughts and ideas. Join our Discord community to share your experience, suggest new features, or connect with other developers who are exploring the future of AI-assisted development.