NeoStack AI
Getting Started

Configuration

Configure agents and settings for Agent Integration Kit

Project Settings

Open Edit > Project Settings > Plugins > Agent Integration Kit to configure the plugin.

Agent Configuration

SettingDescription
Default AgentWhich agent to use when opening the chat window
Auto ConnectAutomatically connect to the default agent on startup
Verbose LoggingEnable detailed ACP protocol logging for debugging

OpenRouter Settings

SettingDescription
API KeyYour OpenRouter API key (required for OpenRouter agent)
Default ModelModel to use by default (e.g., anthropic/claude-sonnet-4)

External Agent Paths

SettingDescription
Claude Code PathPath to claude-code-acp executable (leave blank if in PATH)
Node.js Path (Windows)Path to node.exe for Windows users

Agent Profiles

You can save multiple agent configurations as profiles:

  1. Configure an agent's settings
  2. Click Save Profile
  3. Enter a profile name
  4. Switch between profiles from the dropdown

Each profile stores:

  • Agent type
  • API keys
  • Model selection
  • Environment variables

Environment Variables

Some agents require environment variables. Set them in the Environment Variables section:

ANTHROPIC_API_KEY=sk-ant-...
OPENROUTER_API_KEY=sk-or-...

These are passed to external agent processes when launched.

MCP Server Settings

SettingDescription
Server PortHTTP port for MCP server (default: 9315)
Auto StartStart MCP server when editor launches

Supported Transport Protocols

The MCP server supports two transport protocols for maximum compatibility:

ProtocolSpecificationEndpointsClients
Streamable HTTPMCP 2025-03-26POST /mcp, GET /mcpGemini CLI, newer clients
HTTP+SSEMCP 2024-11-05GET /sse, POST /messageClaude Code, legacy clients

Both protocols are served simultaneously on the same port. Clients are automatically detected based on their connection method.

On this page