Skip to the content.

IDE Integration Guide

Phase 1 Development - Documentation will be updated as features are implemented

Overview

Agents CLI supports integration with agentic IDEs through multiple interfaces:

Supported IDEs

Cursor (MCP Integration)

# Start MCP server for Cursor
agents-cli serve --port 3000 --protocol mcp

# Configure Cursor to connect to localhost:3000

VS Code (Extension)

# Install VS Code extension (Coming Soon)
# Configure via Command Palette > Agents CLI: Setup

JetBrains IDEs (Plugin)

# CLI-based integration via plugin
# Configure in Settings > Tools > Agents CLI

MCP Server Setup

The Model Context Protocol provides real-time integration:

# Start MCP server
agents-cli serve --config server-config.json

# Server configuration example
{
  "server": {
    "port": 3000,
    "host": "localhost",
    "protocol": "mcp"
  },
  "security": {
    "allow_file_access": true,
    "allowed_paths": ["./src", "./docs"],
    "tools_enabled": ["file_operations", "git_tools"]
  }
}

CLI Integration

For IDEs without MCP support:

# Execute workflow from IDE terminal/plugin
agents-cli run \
  --config .agents/code-review.json \
  --input "Review selected code" \
  --context-files "${SELECTED_FILES}"

Configuration

Each integration method supports:

Troubleshooting

Common integration issues and solutions will be documented here during Phase 1 development.

Next Steps