Skip to main content

Other Agents

UnfoldAI monitors any AI coding agent that operates within VS Code — running terminal commands, modifying files, or interacting with the workspace. If your agent isn't listed in our specific integration guides, it's still supported.

Automatic Detection

UnfoldAI ships with built-in detection for: Cursor, Claude Code, GitHub Copilot, Cline, Continue, and Codeium/Windsurf.

For other agents, UnfoldAI still captures terminal activity and file changes. If you want to improve detection accuracy for an unlisted agent, use the custom fingerprints setting:

{
"unfoldai.agentFingerprints.override": {
"your-agent-name": {
// Custom identification rules
}
}
}

MCP Integration

Any agent that supports the Model Context Protocol can connect to UnfoldAI's MCP server. Configure the agent to launch the UnfoldAI MCP server process via stdio:

{
"mcpServers": {
"unfoldai": {
"command": "node",
"args": ["<extension-path>/dist/mcp/mcpServer.js"]
}
}
}

Full MCP Setup Guide →