docs: Update MCP documentation and add CLA

- Update MCP documentation in docs/reference/continue-mcp.mdx
- Simplify MCP deep dive documentation
- Add CLA.md file
- Update CLA workflow
- Remove continue-docs-mcp.yaml
- Add mintlify CLI selection tree image
- Update docs.json configuration

Co-Authored-By: Brian Douglas <bdougieyo@icloud.com>
This commit is contained in:
Brian 'bdougie' Douglas 2025-07-16 02:26:46 -07:00
parent e72522a665
commit 252c60a76e
7 changed files with 71 additions and 60 deletions

View File

@ -1,11 +0,0 @@
name: Continue Documentation MCP
version: 0.0.1
schema: v1
mcpServers:
- name: Continue Docs Search
type: stdio
command: npx
args:
- mint-mcp
- add
- continue-docs

View File

@ -24,7 +24,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path-to-signatures: "signatures/version1/cla.json"
path-to-document: "https://github.com/continuedev/continue/blob/main/docs/docs/CLA.md"
path-to-document: "https://github.com/continuedev/continue/blob/main/CLA.md"
branch: cla-signatures
# Bots and CLAs signed outside of GitHub
allowlist: dependabot[bot],fbricon,panyamkeerthana,Jazzcort,owtaylor,halfline

48
CLA.md Normal file
View File

@ -0,0 +1,48 @@
# Individual Contributor License Agreement (v1.0, Continue)
_Based on the Apache Software Foundation Individual CLA v 2.2._
By commenting **“I have read the CLA Document and I hereby sign the CLA”**
on a Pull Request, **you (“Contributor”) agree to the following terms** for any
past and future “Contributions” submitted to **Continue (the “Project”)**.
---
## 1. Definitions
- **“Contribution”** any original work of authorship submitted to the Project
(code, documentation, designs, etc.).
- **“You” / “Your”** the individual (or legal entity) posting the acceptance
comment.
## 2. Copyright License
You grant **Continue Dev, Inc.** and all recipients of software distributed by the
Project a perpetual, worldwide, nonexclusive, royaltyfree, irrevocable
license to reproduce, prepare derivative works of, publicly display, publicly
perform, sublicense, and distribute Your Contributions and derivative works.
## 3. Patent License
You grant **Continue Dev, Inc.** and all recipients of the Project a perpetual,
worldwide, nonexclusive, royaltyfree, irrevocable (except as below) patent
license to make, have made, use, sell, offer to sell, import, and otherwise
transfer Your Contributions alone or in combination with the Project.
If any entity brings patent litigation alleging that the Project or a
Contribution infringes a patent, the patent licenses granted by You to that
entity under this CLA terminate.
## 4. Representations
1. You are legally entitled to grant the licenses above.
2. Each Contribution is either Your original creation or You have authority to
submit it under this CLA.
3. Your Contributions are provided **“AS IS”** without warranties of any kind.
4. You will notify the Project if any statement above becomes inaccurate.
## 5. Miscellany
This Agreement is governed by the laws of the **State of California**, USA,
excluding its conflictoflaws rules. If any provision is held unenforceable,
the remaining provisions remain in force.

View File

@ -57,41 +57,7 @@ The result will be a generated file called `hn.txt` in the current working direc
You can set up an MCP server to search the Continue documentation directly from your agent. This is particularly useful for getting help with Continue configuration and features.
1. Create a folder called `.continue/mcpServers` at the top level of your workspace
2. Add a file called `continue-docs-mcp.yaml` to this folder
3. Write the following contents and save:
```yaml title=".continue/mcpServers/continue-docs-mcp.yaml"
name: Continue Documentation MCP
version: 0.0.1
schema: v1
mcpServers:
- name: Continue Docs Search
type: stdio
command: npx
args:
- mint-mcp
- add
- continue-docs
```
Now you can search the Continue documentation by asking questions like:
```
Search for model setup instructions in the Continue docs
```
```
Find documentation about context providers
```
```
How do I configure autocomplete in Continue?
```
The MCP server will search the Continue documentation and provide relevant information to help with your questions.
For detailed setup instructions and troubleshooting, see the [Continue MCP Reference](/reference/continue-mcp).
For complete setup instructions, troubleshooting, and usage examples, see the [Continue MCP Reference](/reference/continue-mcp).
## Using MCP Servers

View File

@ -258,7 +258,8 @@
"pages": [
"reference",
"reference/json-reference",
"reference/yaml-migration"
"reference/yaml-migration",
"reference/continue-mcp"
]
}
]

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -4,45 +4,52 @@ description: Set up an MCP server to search Continue documentation
keywords: [mcp, documentation, search, mintlify, reference]
---
# Continue Documentation MCP Server
The Continue Documentation MCP Server allows you to search and retrieve information from the Continue documentation directly within your agent conversations. This is powered by Mintlify's MCP server generation.
The continue-docs MCP Server allows you to search and retrieve information from the Continue documentation directly within your agent conversations. This is powered by Mintlify's MCP server generation.
## Installation
### Step 1: Install the MCP Server
Run the following command to install the Continue documentation MCP server:
Run the following command to install the continue-docs MCP server:
```bash
npx mint-mcp add continue-docs
npx mint-mcp add docs.continue.dev
```
This will:
When prompted, select "All" from the selection menu:
![mintlify cli selection tree](/images/mintlify-cli-selection-tree.png)
This command will:
- Download and install the MCP server locally
- Set up the search tool for Continue documentation
- Create the necessary configuration files
<Info>
Take note of the installation path displayed after running the command above. You'll need to replace in the configuration below with your actual installation path.
It will look like this: `/path/to/user/.mcp/docs.continue.dev/src/index.js`
</Info>
### Step 2: Configure Continue
1. Create a folder called `.continue/mcpServers` at the top level of your workspace
2. Add a file called `continue-docs-mcp.yaml` to this folder
3. Write the following contents and save:
````yaml title=".continue/mcpServers/continue-docs-mcp.yaml"
```yaml title=".continue/mcpServers/continue-docs-mcp.yaml"
name: Continue Documentation MCP
version: 0.0.1
schema: v1
mcpServers:
- name: Continue Docs Search
type: stdio
command: npx
command: node
args:
- mint-mcp
- add
- continue-docs
```
- "/path/to/user/.mcp/docs.continue.dev/src/index.js"
````
### Step 3: Enable Agent Mode