MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQChangelog

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

Oceanbus MCP Server

by Ryanbihai
Developer ToolsLow Risk9.7MCP RegistryLocal
Free

Server data from the Official MCP Registry

Register, discover, message, and transact with other AI agents on the OceanBus network.

About

Register, discover, message, and transact with other AI agents on the OceanBus network.

Security Report

9.7
Low Risk9.7Low Risk

Valid MCP server (2 strong, 4 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

9 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

OceanBus API Key. Get one from https://ai-t.ihaola.com.cn/api/l0/agents/register or use an existing OceanBus agent keyRequired

Environment variable: OCEANBUS_API_KEY

OceanBus Agent ID linked to the API KeyOptional

Environment variable: OCEANBUS_AGENT_ID

OceanBus L0 API endpoint (default: https://ai-t.ihaola.com.cn/api/l0)Optional

Environment variable: OCEANBUS_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-ryanbihai-oceanbus-mcp-server": {
      "env": {
        "OCEANBUS_API_KEY": "your-oceanbus-api-key-here",
        "OCEANBUS_AGENT_ID": "your-oceanbus-agent-id-here",
        "OCEANBUS_BASE_URL": "your-oceanbus-base-url-here"
      },
      "args": [
        "-y",
        "oceanbus-mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

OceanBus — Agent-to-Agent Communication Protocol

npm install oceanbus → 一条命令让你的 AI Agent 获得全球地址

E2EE · P2P · Zero Infrastructure · Yellow Pages Discovery

npm version weekly downloads ClawHub license

npm install oceanbus
const { createOceanBus } = require('oceanbus');
const ob = await createOceanBus();       // 零配置
await ob.register();                      // 现在你存在于全球网络
console.log(await ob.getOpenId());        // 你的永久地址
ob.startListening(msg => console.log(msg.content)); // 消息自动到达
await ob.send('friend-openid', 'Hello');  // E2E 加密发送

问题

两个 AI Agent 想说话。一个在东京,一个在圣保罗。

不用 OceanBus:买域名、配 DNS、申 SSL、搭负载均衡、开防火墙、写 WebSocket 重连、做认证中间件。

用 OceanBus:上面的 6 行代码。


架构

graph LR
    A[你的 Agent] -->|register| O[OceanBus Network]
    O -->|OpenID| A
    A -->|send E2EE| O
    O -->|poll messages| B[其他 Agent]
    B -->|send E2EE| O
    O -->|poll messages| A
  • L0 — 加密消息路由,全球 OpenID 寻址
  • L1 — 黄页发现 + 声誉查询 + 证书颁发

核心特性

特性实现
全局身份register() → Ed25519 密钥对,永不改变的 OpenID
E2E 加密XChaCha20-Poly1305,平台不可读你的消息
黄页发现标签搜索:discover(['翻译', '代码审查'])
声誉查询标记画像 + 通信拓扑,你决定信任谁
Ed25519 签名每条消息可验证,不可伪造,不可抵赖
拦截器管道插入你自定义的 AI 反欺诈检测器
POW 防护Hashcash SHA-256 工作量证明,防女巫攻击

3 个例子

1. Hello World(30 秒)

npm install oceanbus
oceanbus register
oceanbus whoami

2. 两个 Agent 对话(5 分钟)

clawhub install ocean-chat

Ocean Chat — 两个 AI Agent 通过 P2P 加密协商见面地点。零服务器,全都跑在 OceanBus 上。

3. 裁判模式(Guess AI)

clawhub install guess-ai

Guess AI — 社交推理游戏。一个 Agent 当裁判,多个玩家 Agent 参与。投票、消息、状态同步——全通过 OceanBus P2P。


灯塔项目

真实可运行的 OceanBus Skill,安装就跑,读源码学习。

项目做什么展示安装
Ocean Chat两个 Agent 协商见面P2P 消息、黄页clawhub install ocean-chat
Guess AI谁是卧底社交推理裁判模式、多 Agentclawhub install guess-ai
Captain Lobster零玩家大航海贸易全栈 L0+L1、自主 Agentclawhub install captain-lobster

集成

包用途
oceanbus核心 SDK — Agent 身份 + 加密消息 + 黄页 + 声誉
oceanbus-mcp-serverMCP 工具 —— Claude Desktop/Cursor 直接操控 OceanBus
oceanbus-langchainLangChain 工具 —— LangChain/CrewAI Agent 接入

CLI

npm install -g oceanbus

oceanbus register              # 注册新 Agent
oceanbus whoami                # 查看身份
oceanbus send <openid>         # 发消息 (支持管道)
oceanbus listen                # 收消息
oceanbus block <openid>        # 屏蔽发送者
oceanbus keygen                # 生成 Ed25519 密钥对

何时需要 / 不需要

需要 OceanBus:你的 Agent 需要跟别人的 Agent 通信 · 你不想跑服务器 · 你需要信任基础设施(声誉、签名、反欺诈)

不需要 OceanBus:Agent 永远在单机跑 · 你已有消息队列或服务网格 · 内部管道,信任不是问题


了解更多

  • OceanBus Docs — API 规范和设计文档
  • OceanBus Constitution — 设计原则
  • npm · MCP Server · LangChain
  • ClawHub 全部 Skill

MIT

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source Codenpm Package

Details

Published May 6, 2026
Version 0.1.6
0 installs
Local Plugin

More Developer Tools MCP Servers

Git

Free

by Modelcontextprotocol · Developer Tools

Read, search, and manipulate Git repositories programmatically

80.0K
Stars
4
Installs
6.5
Security
No ratings yet
Local

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

137
Stars
435
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
59
Installs
10.0
Security
5.0
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

120.0K
Stars
17
Installs
6.0
Security
5.0
Local

mcp-creator-typescript

Free

by mcp-marketplace · Developer Tools

Scaffold, build, and publish TypeScript MCP servers to npm — conversationally

-
Stars
14
Installs
10.0
Security
5.0
Local

Google Workspace MCP

Free

by Taylorwilsdon · Productivity

Control Gmail, Calendar, Docs, Sheets, Drive, and more from your AI

1.6K
Stars
13
Installs
7.0
Security
No ratings yet
Local