MCP (Model Context Protocol) allows CoPaw to connect to external MCP servers and use their tools. You can add MCP clients through the Console to extend CoPaw's capabilities.
If using npx to run MCP servers, ensure you have:
- Node.js version 18 or higher (download)
Check your Node.js version:
node --version- Open the Console and go to Agent → MCP
- Click + Create button
- Paste your MCP client configuration in JSON format
- Click Create to import
CoPaw supports three JSON formats for importing MCP clients:
{
"mcpServers": {
"client-name": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem"],
"env": {
"API_KEY": "your-api-key-here"
}
}
}
}{
"client-name": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem"],
"env": {
"API_KEY": "your-api-key-here"
}
}
}{
"key": "client-name",
"name": "My MCP Client",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem"],
"env": {
"API_KEY": "your-api-key-here"
}
}{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/Users/username/Documents"
]
}
}
}Replace
/Users/username/Documentswith the directory path you want the agent to access.
Once imported, you can:
- View all clients — See all MCP clients as cards on the MCP page
- Enable / Disable — Toggle clients on or off without deleting them
- Edit configuration — Click a card to view and edit the JSON configuration
- Delete clients — Remove MCP clients you no longer need