Token导航 LogoToken导航TokenDH.com
Titan Builder MCP logo
金融服务未说明官方级别未说明来源级核验

Titan Builder MCP

MCP Server

Titan Builder MCP服务器是一个为以太坊区块构建器提供AI交互能力的服务,允许AI代理直接与Titan Builder的MEV基础设施交互,发送交易包、调试失败、提交交易等。

工具数

5

提示词数

0

GitHub Stars

1

资源数

0
以太坊RustClaude区块链ClaudeCursor

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

VPC-byte

提供方

VPC-byte

最后核验

2026/5/17 20:23

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

泰坦建筑商mcp

  _   _ _                   _           _ _     _
 | |_(_) |_ __ _ _ __      | |__  _   _(_) | __| | ___ _ __
 | __| | __/ _` | '_ \ ____| '_ \| | | | | |/ _` |/ _ \ '__|
 | |_| | || (_| | | | |____| |_) | |_| | | | (_| |  __/ |
  \__|_|\__\__,_|_| |_|    |_.__/ \__,_|_|_|\__,_|\___|_|
                                           _ __ ___   ___ _ __
                                          | '_ ` _ \ / __| '_ \
                                          | | | | | | (__| |_) |
                                          |_| |_| |_|\___| .__/
                                                         |_|

![CI](https://github.com/VPC-byte/titan-builder-mcp/actions) ![License: MIT](LICENSE)

Rust MCP服务器 泰坦建造者 --将以太坊区块构建器功能引入人工智能编码代理。

以太坊区块构建器的第一个MCP(模型上下文协议)服务器。使Claude Code和Cursor等AI代理能够直接与Titan Builder的MEV基础设施进行交互——发送捆绑包、调试故障、提交事务等。

亮点

  • 增强的捆绑包跟踪 --基于AI的诊断分析 titan_getBundleStats见下文
  • 5个MCP工具 映射到Titan Builder的完整API表面
  • 单个二进制 --零运行时依赖,编译Rust
  • 区域端点 --美国、欧盟、亚洲,延迟最小

建筑

快速开始

安装:

cargo install titan-builder-mcp

配置 (克劳德代码 ~/.claude/settings.json):

{
  "mcpServers": {
    "titan-builder": {
      "command": "titan-builder-mcp",
      "env": {
        "TITAN_RPC_URL": "https://us.rpc.titanbuilder.xyz"
      }
    }
  }
}

用途: 配置后,您的AI代理可以通过自然语言发送捆绑包、检查捆绑包状态、提交事务和调试故障。

增强的捆绑包跟踪

核心特征。 当你的包失败时,你不应该猜原因。

Titan Builder提供 捆绑包跟踪 通过 titan_getBundleStats --返回状态代码、建筑商付款数据和错误详细信息。我们的MCP服务器增加了 AI就绪诊断层 最上面:根本原因分析、可操作的修复建议和付款标志。

没有增强的捆绑包跟踪

原始API响应-您可以看到 *什么* 发生了,但没有 *为什么* 或 *该怎么办*:

{
  "status": "SimulationFail",
  "builderPayment": "0",
  "builderPaymentWhenIncluded": "0",
  "error": "BundleRevert. Reverting Hash: 0xa1b2c3d4e5f6...789"
}

具有增强的捆绑包跟踪功能

相同的响应+结构化诊断分析:

## Raw Response
{
  "status": "SimulationFail",
  "builderPayment": "0",
  "builderPaymentWhenIncluded": "0",
  "error": "BundleRevert. Reverting Hash: 0xa1b2c3d4e5f6...789"
}

## Analysis
Status: SimulationFail
Root cause: Transaction 0xa1b2c3d4e5f6...789 reverted during top-of-block simulation.

Suggestions:
- Add 0xa1b2c3d4e5f6...789 to revertingTxHashes if this revert is acceptable
- Verify the transaction succeeds via estimateGas against current state
- Ensure builder payment (post-bundle balance - pre-bundle balance) is > 0

它分析了什么

能力描述
根本原因识别将7种捆绑状态中的每一种都映射到人类可读的解释中
可采取行动的建议解决问题的具体步骤——而不是通用建议
付款分析标记时 builderPayment 为0(您的捆绑包不向建筑商支付任何费用)
反向检测从错误消息中提取还原交易哈希值,并建议将其添加到 revertingTxHashes

这是纯粹的分析-没有额外的API调用。它完全基于来自的响应数据运行 titan_getBundleStats.

工具

工具Titan API说明
send_bundleeth_sendBundle发送已签名事务的原子包
cancel_bundleeth_cancelBundle通过替换UUID取消捆绑包
get_bundle_statstitan_getBundleStats查询捆绑包状态 带诊断分析
send_raw_transactioneth_sendRawTransaction通过私有内存池提交已签名的交易
send_blobseth_sendBlobs发送blob事务排列以实现最佳包含

捆绑状态参考

状态含义诊断
Received到达池的时间太晚请提前提交,使用区域端点
Invalid格式错误的捆绑包检查RLP、链ID、nonce、块号
SimulationFail还原或零建筑商付款修复还原tx或增加优先费的问题
SimulationPass通过但为时已晚在插槽中提前提交
ExcludedFromBlock贿赂不足(99%的案件)增加优先费
IncludedInBlock输给更有价值的区块增加贿赂
Submitted成功--提交给中继监控链上包含

配置

环境变量描述默认值
TITAN_RPC_URLTitan Builder RPC端点https://rpc.titanbuilder.xyz
TITAN_TIMEOUT_MSHTTP请求超时(毫秒)10000

区域终点

区域URL
全球(地理路由)https://rpc.titanbuilder.xyz
美国https://us.rpc.titanbuilder.xyz
欧洲https://eu.rpc.titanbuilder.xyz
亚洲https://ap.rpc.titanbuilder.xyz
测试网(Hoodi)https://rpc-hoodi.titanbuilder.xyz

从源代码构建

git clone https://github.com/VPC-byte/titan-builder-mcp.git
cd titan-builder-mcp
cargo build --release

相关

许可证

麻省理工学院

目录标签

目录标签

以太坊RustClaude区块链本地部署区块构建AI交互MEV

支持客户端

ClaudeCursor

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

none

工具数量(toolCount,工具数)

5

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明none部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP