Token导航 LogoToken导航TokenDH.com
Agentic Intracom logo
AI代理未说明官方级别未说明来源级核验

Agentic Intracom

MCP Server

IntraCom是一个通用的模型上下文协议(MCP)服务器,用于不同编码助手AI代理之间的通信。

工具数

6

提示词数

0

GitHub Stars

0

资源数

0
工具发现TypeScriptClaudeClaude

安装说明

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

作者 / 组织

btr-protocol

提供方

btr-protocol

最后核验

2026/5/17 20:21

快速接入

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

详细介绍

IntraCom

Agent总线MCP服务器,用于AI编码助手之间的跨代理通信。

IntraCom 是通用的 模型上下文协议(MCP) 该服务器使来自不同编码助手(OpenCode、Claude Code、Aider、Roo Code等)的AI代理能够通过共享消息总线相互通信。

特性

  • 代理商注册:注册具有能力和分配列表的代理
  • 消息传递:发送具有跨列表执行的消息
  • 令牌身份验证:每个代理可选的基于令牌的身份验证
  • 永久存储:基于JSON的状态持久性
  • 工具发现:列出所有注册代理人及其能力
  • 通用设计:适用于任何启用MCP的AI工具

安装

# Clone the repository
git clone https://github.com/btr-supply/agentic-intracom.git
cd agentic-intracom

# Install dependencies
bun install

用法

启动服务器

bun run start

服务器使用stdio进行MCP通信。在AI工具的MCP设置中配置它。

配置

通过环境变量:

export INTRACOM_STORAGE="./intracom-state.json"
bun run start

MCP工具

agent_list

列出所有已注册的代理及其能力和分配列表。

agent_register

使用功能、允许列表和可选令牌注册或更新代理。

agent_unregister

从注册表中删除代理。

message_send

向另一个代理发送消息(强制执行allowlist)。

message_read

从代理的邮箱读取邮件(默认情况下会耗尽)。

message_peek

在不阅读内容的情况下获取消息计数。

OpenCode集成

添加到您的 opencode.json:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "intracom": {
      "type": "local",
      "command": ["bun", "run", "/path/to/agentic-intracom/src/index.ts"],
      "environment": {
        "INTRACOM_STORAGE": "./intracom-state.json"
      },
      "enabled": true
    }
  }
}

代理配置示例

---
description: Frontend Lead
mode: subagent
---

# Neo - Frontend Lead

You are registered as `neo` on IntraCom.

## Protocol

1. On start: Register yourself
2. Send messages to other agents
3. Read your mailbox periodically

Claude代码集成

添加到您的 claude.json:

{
  "mcpServers": {
    "intracom": {
      "command": "bun",
      "args": ["/path/to/agentic-intracom/src/index.ts"],
      "env": {
        "INTRACOM_STORAGE": "./intracom-state.json"
      }
    }
  }
}

发展

# Run with watch mode
bun run dev

# Format code
bunx prettier --write .

许可证

麻省理工学院-见 许可证 了解详情。

目录标签

目录标签

工具发现TypeScriptClaudeAI代理通信本地部署模型上下文协议消息传递跨平台集成

支持客户端

Claude

接入字段

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

未说明

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

none

工具数量(toolCount,工具数)

6

资源数量(resourceCount,资源数)

0

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

0

权限和风险

未说明none部署方式未说明

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

安装前确认

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

仍需确认:installCommand

来源信息

继续浏览同类 MCP