Goland 通过 ACP 连接 Claude Code

前言 2025年12月5日,JetBrains 官方正式推出了对 ACP 协议的正式支持,可以通过下载各个 JetBrains IDE 的2025.3 Release Candidate build版本来使用 ACP 协议。 配置 在本文中将以 Goland IDE 为例,介绍如何通过 ACP 协议连接 Claude Code。 安装 Goland 2025.3 Release Candidate build 在 Toolbox 安装 Goland 2025.3 Release Candidate 版本。 配置 打开 AI Chat 工具窗口,目前需要登录才能使用 AI Chat 功能,官方后续会进行调整。在选项卡选择配置 ACP 代理,会创建打开~/.jetbrains/acp.json 文件。 安装配置 Claude Code ACP 代理 使用 pnpm install @zed-industries/claude-code-acp 安装 claude-code-acp。 修改 ~/.jetbrains/acp.json 文件,添加以下内容: { "agent_servers": { "Claude Code Agent": { "command": "pnpx", "args": [ "@zed-industries/claude-code-acp" ], } } } 配置完在 Chat界面选择 Claude Code Agent ...

十二月 6, 2025 · 1 分钟 · overstarry

在 Claude Code 中配置 Augment Context Engine MCP

前言 ACE(Augment Context Engine) 是 Augment 提供的上下文引擎,可以说是 Augment的核心竞争力,12月3号官方正式推出了 ACE MCP,方便在其它 code agent 中使用。 本文将介绍如何在 Claude Code 中配置 ACE MCP。 环境 OS: WSL Ubuntu 24.04 Host OS: Windows 10.0.26100 Claude Code: 2.0.57 (Claude Code) 安装 1 安装 Auggie CLI (Pre-release version) npm install -g @augmentcode/auggie@prerelease 2 登录 augment auggie login 3 打开Claude Code设置 mcp server claude mcp add-json auggie-mcp '{"type":"stdio","command":"auggie","args":["--mcp"],"env":{"AUGMENT_API_TOKEN":"xx","AUGMENT_API_URL":"https://xx.api.augmentcode.com"}}' 4 使用 What is this project ? Please use codebase retrieval tool to get the answer. 询问项目相关的内容,可以看到成功输出了项目相关的介绍。 ...

十二月 3, 2025 · Updated 十二月 4, 2025 · 1 分钟 · overstarry

Zed acp-claude-code

前言 zed 在 0.201.4 版本推出了应用 Agent Client Protocol (ACP) 协议的第一个正式版本,Agent Client Protocol (ACP) 是一个将外部 Agents 与编辑器集成的开放协议,zed 在这个版本中集成了 Google Gemini CLI , 开发者可以自己开发兼容 ACP 的自定义代理,本文就是讲述如何安装配置 acp-claude-code 以在 zed 更方便的使用 Claude Code. 配置 acp-claude-code 的配置很简单,打开 zed 的设置,填入设置: { "agent_servers": { "Claude Code": { "command": "npx", "args": ["acp-claude-code"] } } } 设置完打开 Agent 面板就可以看到外部 Agents的选项中已有 Claude Code 选项。 新建 Claude Code 线程,发现报错了,提示 program not found 。 根据以往的经验,这种错误主要发生在 windows 系统上,windows 系统的用户应该使用如下配置。 ...

九月 1, 2025 · 1 分钟 · overstarry

Enhancing qweather-mcp-go

前言 Claude Code 是 Anthropic 公司开发的 AI 编程工具,它在终端运行,能理解整个项目架构,通过自然语言指令进行代码生成、Bug 修复、Git 操作和自动化开发流程,显著提升开发效率。它支持 macOS、Ubuntu 和 Windows (WSL),并提供按量付费或包月订阅模式。 本文将使用 Claude Code 来增强 qweather-mcp-go 项目,qweather-mcp-go 是一个 mcp 工具,可以方便的查询天气情况等数据。本文将一步步使用 Claude Code 来为 qweather-mcp-go 添加 Streamable HTTP 的支持。 开始 开始编写代码之前,介绍一下使用的工具及环境: 开发工具: zed mcp: context7 、 server-sequential-thinking AI 编程工具: claude code 模型: claude-sonnet-4 qweather-mcp-go 当前只支持 stdio 和 sse 协议,我们来为它添加 streamable http 的支持。 初始化项目 打开终端,输入 /init 初始化项目,会在项目中生成 CLAUDE.md 文件,使 Claude Code 能够快速理解项目。 实现 在 Claude Code 中输入以下内容: 请按照以下步骤实现 Streamable HTTP 支持: 1. 首先阅读 GitHub issue:https://github.com/overstarry/qweather-mcp-go/issues/4,理解具体的需求和期望的功能 2. 使用 context7 工具获取 github.com/mark3labs/mcp-go 库中与 Streamable HTTP 相关的 API 文档,重点关注: - 流式 HTTP 请求和响应的接口定义 - 相关的结构体、方法和配置选项 - 使用示例和最佳实践 3. 基于获取的文档信息,分析当前 qweather-mcp-go 项目的代码结构,确定需要修改的文件和组件 4. 提出一个详细的实现方案,包括: - 需要实现的具体功能点 - 代码架构设计 - 主要的实现步骤 - 可能遇到的技术挑战和解决方案 5. 在开始编码前,先展示完整的实现计划供确认 输入后可以看到 Claude Code 会创建计划来一步步实现需求。 ...

八月 15, 2025 · Updated 九月 1, 2025 · 1 分钟 · overstarry