> For the complete documentation index, see [llms.txt](https://docs.cherryai.com.cn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cherryai.com.cn/docs/en-us/advanced-basic/mcp/auto-install.md).

# Automatically Install MCP

> Automatic installation of MCP requires upgrading Cherry Studio to v1.1.18 or later.

## Feature overview

In addition to manual installation, Cherry Studio also includes `@mcpmarket/mcp-auto-install` tool, which is a more convenient way to install MCP servers. You only need to enter the corresponding command in a large model conversation that supports MCP services.

{% hint style="warning" %}
**Testing phase reminder:**

* `@mcpmarket/mcp-auto-install` is still in the testing phase
* The effect depends on the LLM's "IQ"; some will be added automatically, while others still**need to be manually adjusted for some parameters in MCP settings**
* The current search source searches from @modelcontextprotocol, and can be configured by yourself (see below)
  {% endhint %}

## Instructions for use

For example, you can enter:

```
Help me install a filesystem mcp server
```

<figure><img src="/files/0ab128d27af55f7e498cd9d08b6540c2a3eb7e07" alt=""><figcaption><p>Enter a command to install the MCP server</p></figcaption></figure>

<figure><img src="/files/7af27e3f06dc774bda8b9dfd1ea55c9599fb7425" alt=""><figcaption><p>MCP server configuration screen</p></figcaption></figure>

The system will automatically recognize your needs and through `@mcpmarket/mcp-auto-install` complete the installation. This tool supports multiple types of MCP servers, including but not limited to:

* filesystem (file system)
* fetch (network request)
* sqlite (database)
* etc...

> The MCP\_PACKAGE\_SCOPES variable can customize the MCP service search source; the default value is:`@modelcontextprotocol`and can be customized.

## `@mcpmarket/mcp-auto-install` Introduction to the repository

{% hint style="info" %}
**Default configuration reference:**

```json
// `axun-uUpaWEdMEMU8C61K` is the service id, customize as needed
"axun-uUpaWEdMEMU8C61K": {
  "name": "mcp-auto-install",
  "description": "Automatically install MCP services (Beta version)",
  "isActive": false,
  "registryUrl": "https://registry.npmmirror.com",
  "command": "npx",
  "args": [
    "-y",
    "@mcpmarket/mcp-auto-install",
    "connect",
    "--json"
  ],
  "env": {
    "MCP_REGISTRY_PATH": "See details at https://www.npmjs.com/package/@mcpmarket/mcp-auto-install"
  },
  "disabledTools": []
}
```

`@mcpmarket/mcp-auto-install` is an open-source npm package, you can in [the npm official repository](https://www.npmjs.com/package/@mcpmarket/mcp-auto-install) view its details and usage documentation.`@mcpmarket` is Cherry Studio's official MCP service collection.
{% endhint %}

***

### 💡 Get help and submit feedback

If you encounter any questions, bugs, or have suggestions for feature improvements during configuration or use, please refer to [Feedback and Suggestions](/docs/en-us/question-contact/suggestions.md) the official channels provided there.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.cherryai.com.cn/docs/en-us/advanced-basic/mcp/auto-install.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
