MCP (Model Context Protocol) is a standardized protocol for connecting external tools and data sources to language models.
By supporting and integrating with MCP, Sprouti can extend workflows for editing, search, and automation.
Specific screen names and field labels may vary depending on your version. We will progressively add detailed step-by-step instructions following the UI.
Add the following MCP server definition to the Claude Desktop configuration file to connect to Sprouti's MCP server.
Adjust the command
and args
paths to match your environment. Replace <username>
with your actual username.
{
"mcpServers": {
"sprouti": {
"command": "/Users/<username>/.nodebrew/current/bin/node",
"args": ["/Applications/Sprouti.app/Contents/Resources/mcp/server.js"],
"env": {
"PATH": "/Users/<username>/.nodebrew/current/bin:/usr/local/bin:/usr/bin:/bin"
}
}
}
}
For Windows, please refer to the following configuration:
{
"mcpServers": {
"sprouti": {
"command": "C:\Program Files\nodejs\node.exe",
"args": ["C:\Users\<username>\sprouti\dist\mcp\server.js"],
"env": {
"PATH": "C:\Program Files\nodejs;C:\Windows\System32;C:\Windows"
}
}
}
}
Add the following MCP server definition to your config.toml configuration file.
Adjust the command
and args
paths to match your environment. Replace <username>
with your actual username.
[mcp_servers.sprouti]
command = "/Users/<username>/.nodebrew/current/bin/node"
args = ["/Applications/Sprouti.app/Contents/Resources/mcp/server.js"]
env.PATH = "/Users/<username>/.nodebrew/current/bin:/usr/local/bin:/usr/bin:/bin"
For Windows, add the following setting based on the path displayed in the settings screen:
SPROUTI_MCP_AUTH_PATH = "C:\Users\<YourUser>\AppData\Local\Packages\<PFN>\LocalCache\Roaming\sprouti\sprouti-mcp-auth.txt"
command
: Specifies the path to your Node.js binaryargs
: Specifies the path to Sprouti's MCP server script (refer to the MCP section in Sprouti's settings panel for the correct path)If the connection from JetBrains AI Assistant via MCP is unstable, add the following setting to the env
section in your configuration:
"SPROUTI_MCP_LOG_LEVEL": "error"
This setting limits the log level to errors only, which may improve connection stability.
Official documentation and specific compatibility status will be updated progressively. If you have any questions, please reach out via Contact.