> For the complete documentation index, see [llms.txt](https://syv-labs.gitbook.io/context-pool/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://syv-labs.gitbook.io/context-pool/ide-setup/other-ides.md).

# Other IDEs

## Windsurf

Windsurf stores chat history in a VS Code-style workspace database. Export it with:

```bash
cxp export vscdb --product Windsurf
```

To specify a custom workspace storage path:

```bash
cxp export vscdb --product Windsurf --workspace-storage "/path/to/workspaceStorage"
```

Then add `cxp mcp` to Windsurf's MCP config (same format as Cursor).

***

## VS Code Forks (General)

Any VS Code fork that stores chat in `state.vscdb` files works with `cxp export vscdb`.

Default workspace storage paths:

| Platform         | Path                                                           |
| ---------------- | -------------------------------------------------------------- |
| macOS (Cursor)   | `~/Library/Application Support/Cursor/User/workspaceStorage`   |
| Windows (Cursor) | `%APPDATA%\Cursor\User\workspaceStorage`                       |
| macOS (Windsurf) | `~/Library/Application Support/Windsurf/User/workspaceStorage` |

***

## Kiro

Kiro lets you export sessions with `/chat save <path>`. Once saved:

```bash
cxp export kiro --chat-json ./kiro-session.json
```

***

## Any MCP-Compatible IDE

If your IDE supports MCP servers, add this config:

```json
{
  "mcpServers": {
    "contextpool": {
      "command": "cxp",
      "args": ["mcp"],
      "env": {
        "ANTHROPIC_API_KEY": "sk-ant-..."
      }
    }
  }
}
```

The four MCP tools — `fetch_project_context`, `get_project_context`, `search_context`, `list_context_projects` — work in any compliant MCP client.

***

## Coming Soon

Native support planned for:

* JetBrains AI Assistant (IntelliJ, WebStorm, etc.)
* GitHub Copilot Chat
* Zed AI

See the [Roadmap](/context-pool/more/roadmap.md) for details.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://syv-labs.gitbook.io/context-pool/ide-setup/other-ides.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
