AI Skill Hub 推荐使用:MCP工具箱 是一款优质的MCP工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
Go语言SDK,用于与MCP Toolbox for Databases交互
MCP工具箱 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Go语言SDK,用于与MCP Toolbox for Databases交互
MCP工具箱 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/googleapis/mcp-toolbox-sdk-go
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"mcp---": {
"command": "npx",
"args": ["-y", "mcp-toolbox-sdk-go"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 MCP工具箱 执行以下任务... Claude: [自动调用 MCP工具箱 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"mcp___": {
"command": "npx",
"args": ["-y", "mcp-toolbox-sdk-go"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效

The MCP Toolbox service provides a centralized way to manage and expose tools (like API connectors, database query tools, etc.) for use by GenAI applications.
The Go SDK act as clients for that service. They handle the communication needed to:
By using the SDK, you can easily leverage your MCP Toolbox-managed tools directly within your Go applications or AI orchestration frameworks.
1. Set up the Toolbox Service: Ensure you have a running MCP Toolbox server. Follow the MCP Toolbox Server Quickstart. 2. Install the Appropriate SDK:
# For the core, framework-agnostic SDK
go get github.com/googleapis/mcp-toolbox-sdk-go/core
# For ADK Go
go get github.com/googleapis/mcp-toolbox-sdk-go/tbadk
# For Genkit Go
go get github.com/googleapis/mcp-toolbox-sdk-go/tbgenkit
3. Explore Tutorials: Check out the Go Quickstart Tutorial for a full walkthrough.
[!IMPORTANT] Breaking Change Notice: As of version0.6.0, this repository has transitioned to a multi-module structure. For new versions (v0.6.0+): You must import specific modules (e.g.,go get github.com/googleapis/mcp-toolbox-sdk-go/core). For older versions (v0.5.1and below): The repository remains a single-module library (go get github.com/googleapis/mcp-toolbox-sdk-go). * Please update your imports andgo.modaccordingly when upgrading.
This repository contains the Go SDKs for MCP Toolbox. These SDKs allow you to load and use tools defined in your MCP Toolbox server as standard Go structs within your Agentic applications.
For comprehensive guides and advanced configuration, visit the Main Documentation Site.
This repository hosts the following Go packages. See the package-specific README for detailed installation and usage instructions:
| Package | Target Use Case | Path | Documentation |
|---|---|---|---|
core | Framework-agnostic / Custom apps | core/ | [Go SDK Core Guide](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/go-sdk/core/) |
tbadk | ADK Go Integration | tbadk/ | [ADK Package Guide](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/go-sdk/tbadk/) |
tbgenkit | Genkit Go Integration | tbgenkit/ | [Genkit Package Guide](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/go-sdk/tbgenkit/) |
高质量的Go语言SDK,易于使用
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
总体来看,MCP工具箱 是一款质量良好的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | mcp-toolbox-sdk-go |
| 原始描述 | 开源MCP工具:Go SDK for interacting with the MCP Toolbox for Databases.。⭐58 · Go |
| Topics | mcpdatabasesgogolang |
| GitHub | https://github.com/googleapis/mcp-toolbox-sdk-go |
| License | Apache-2.0 |
| 语言 | Go |
收录时间:2026-06-04 · 更新时间:2026-06-04 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端