Continue.dev
Persistent memory for Continue
Continue supports MCP servers for extending AI capabilities. Add GrantAi to give Continue persistent memory across coding sessions.
Note: MCP can only be used in agent mode in Continue.
1. Install GrantAi
Download and run the installer for your platform from the download page.
Go to Download Page2. Open Continue Config
Continue supports multiple config formats. The recommended approach is using YAML:
macOS
~/.continue/config.yamlWindows
%USERPROFILE%\.continue\config.yamlmacOS Configuration (YAML)
Add this to your config.yaml. Replace YOUR_USERNAME with your macOS username.
# ~/.continue/config.yaml
mcpServers:
- name: grantai
command: /Users/YOUR_USERNAME/.grantai/bin/grantai-mcpWindows Configuration (YAML)
Windows uses a fixed installation path.
# %USERPROFILE%\.continue\config.yaml
mcpServers:
- name: grantai
command: C:\GrantAi\bin\grantai-mcp.exeAlternative: JSON Configuration
If you prefer JSON, add this to your config.json:
{
"experimental": {
"modelContextProtocolServers": [
{
"name": "grantai",
"transport": {
"type": "stdio",
"command": "/Users/YOUR_USERNAME/.grantai/bin/grantai-mcp"
}
}
]
}
}Enable Agent Mode
MCP tools are only available in agent mode. Switch to agent mode in Continue before using GrantAi memory tools.
Official Documentation
For the latest MCP configuration options, check Continue's official documentation:
Continue MCP Documentation