Skip to main content
Glama
ZachPulse

iBluSend

by ZachPulse

iBluSend 插件

适用于 OpenAI 和 Claude 的 iBluSend 官方共享插件。一个包即可将两个提供商连接到同一工作区绑定的 MCP 资源,并提供三个提供商无关的工作流:

  • 收件箱分类;

  • 安全草稿与发送;以及

  • 联系人、设备和合规性操作。

公共包有意公开精选的公共契约。它不是批量营销引擎,不会绕过 iBluSend 合规性控制,也不会传输凭证。

仓库状态

该包仍处于开发/本地测试阶段,尚未提交到公开市场。iBluSend 包现在携带在私有 ChatGPT 开发者模式测试中验证过的真实 OpenAI 应用映射;白标输出省略了 .app.json,除非该品牌有自己的已注册 OpenAI 应用。

Related MCP server: outlook-mcp

布局

plugins/iblusend/                     Generated installable plugin
  .codex-plugin/plugin.json           OpenAI / Codex manifest
  .app.json                           Registered iBluSend OpenAI app mapping
  .claude-plugin/plugin.json          Claude manifest
  .mcp.json                           Shared remote MCP connection
  skills/                             Provider-neutral workflows
.agents/plugins/marketplace.json      Codex repository marketplace
.claude-plugin/marketplace.json       Claude repository marketplace
brands/                               Validated brand documents
scripts/                              Generator and package validator
tests/                                Determinism, parity, and leak checks
docs/                                 Beta and submission runbooks

验证已签入的包

Node.js 20 或更高版本即可;没有运行时或开发依赖。

npm test

当提供方 CLI 和 OpenAI 验证器的 PyYAML 依赖可用时,也运行其验证器。如有需要,使用临时 Python 目标而不是全局安装:

validation_env="$(mktemp -d)"
python3 -m pip install --quiet --target "$validation_env" -r requirements-validation.txt
PYTHONPATH="$validation_env" python3 \
  "$CODEX_HOME/skills/.system/plugin-creator/scripts/validate_plugin.py" plugins/iblusend
rm -r "$validation_env"
claude plugin validate plugins/iblusend --strict
claude plugin validate . --strict

重新生成 iBluSend

npm run generate
npm run generate:check

生成的插件文件带有头部,或属于二进制资产。更改 brands/iblusend.json 或生成器,然后重新生成;不要独立修补已生成的副本。

生成私有白标包

node scripts/generate-brand-package.mjs \
  --brand brands/imessage-sender.example.json \
  --output dist/imessage-sender
node scripts/validate-packages.mjs --root dist/imessage-sender

dist/ 已被忽略。代理机构品牌文档和档案保持私有。只有 iBluSend 才有意于首次公开提交。

参见 docs/beta白标打包,以及 docs/submission/ 下的提交通行手册。

安全

  • MCP 端点为 https://api.iblusend.com/functions/v1/agent/v1/mcp/public

  • OAuth 从资源中发现;此处不包含任何客户端密钥或 API 密钥。

  • 每个授权授权都绑定到一个工作区。

  • 写入工具要求 读取并执行 同意。

  • 发送工作流会在准确的工作区、1:1 的接收者和最终内容上停止,以供宿主审批。

安全顾虑请私下报告至 support@iblusend.com

许可与商标

代码与工作流文本根据 MIT 许可。iBluSend 名称、徽标和其他品牌资产不在该授予范围内;请参见 TRADEMARKS.md。# iBluSend 插件

适用于 OpenAI 和 Claude 的 iBluSend 官方共享插件。一个包即可让两个提供商连接到同一个工作区绑定的 MCP 资源,并提供三条提供商无关的工作流:

  • 收件箱分类;

  • 安全起草与发送;以及

  • 联系人、设备与合规操作。

该公共包有意公开经过精选的公共合约。它不是一个群发营销工具,不会绕过 iBluSend 合规性控制,也不会发送凭证。

仓库状态

该包仍处于开发/测试阶段,尚未提交到公开市场。iBluSend 包现在包含已在私有 ChatGPT 开发者模式测试中验证的真实 OpenAI 应用映射;白标输出省略了 .app.json,除非该品牌拥有自己的已注册 OpenAI 应用。

布局

plugins/iblusend/                     Generated installable plugin
  .codex-plugin/plugin.json           OpenAI / Codex manifest
  .app.json                           Registered iBluSend OpenAI app mapping
  .claude-plugin/plugin.json          Claude manifest
  .mcp.json                           Shared remote MCP connection
  skills/                             Provider-neutral workflows
.agents/plugins/marketplace.json      Codex repository marketplace
.claude-plugin/marketplace.json       Claude repository marketplace
brands/                               Validated brand documents
scripts/                              Generator and package validator
tests/                                Determinism, parity, and leak checks
docs/                                 Beta and submission runbooks

验证已签入的包

Node.js 20 或更高版本即可;没有运行时或开发依赖。

npm test

当提供方 CLI 和 OpenAI 验证器的 PyYAML 依赖可用时,也运行其验证器。如有需要,请使用临时 Python 目标而不是全局安装:

validation_env="$(mktemp -d)"
python3 -m pip install --quiet --target "$validation_env" -r requirements-validation.txt
PYTHONPATH="$validation_env" python3 \
  "$CODEX_HOME/skills/.system/plugin-creator/scripts/validate_plugin.py" plugins/iblusend
rm -r "$validation_env"
claude plugin validate plugins/iblusend --strict
claude plugin validate . --strict

重新生成 iBluSend

npm run generate
npm run generate:check

生成的插件文件带有头部,或为二进制资源。请修改 brands/iblusend.json 或生成器,然后重新生成;不要用独立的方式修补已生成的副本。

生成私有白标包

node scripts/generate-brand-package.mjs \
  --brand brands/imessage-sender.example.json \
  --output dist/imessage-sender
node scripts/validate-packages.mjs --root dist/imessage-sender

dist/ 已被忽略。代理品牌文档和档案保持私有。仅 iBluSend 面向首次公开提交。

参见 本地预览白标打包,以及 docs/submission/ 下的提供者提交手册。

安全

  • MCP 端点为 https://api.iblusend.com/functions/v1/agent/v1/mcp/public

  • OAuth 从资源中自动发现;此处不包含任何客户端密钥或 API 密钥。

  • 每个授权授权都限定到唯一一个工作区。

  • 写入工具需要 读取并执行 权限。

  • 发送工作流在宿主批准之前,会先限定在某个工作区、1:1 的接收方以及最终内容。

如有安全问题,请私下报告至 support@iblusend.com

许可证与商标

代码与工作流文本根据 MIT 授权。iBluSend 名称、徽标和其他品牌资产不在该授权范围内;请参见 TRADEMARKS

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server for Mimecast Email Security — message tracking, threat intelligence, and email queue management. Enables AI assistants to investigate and manage email security events.
    1
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • Read, search, send, organize, draft and schedule email across your inboxes from any MCP client.

  • Remote MCP for Android CLI agent build gate, structured receipts, audit logs, and reviewer-ready evi

  • Remote MCP for Copilot CLI switch gate MCP, structured receipts, audit logs, and reviewer-ready evid

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ZachPulse/iblusend-plugins'

If you have feedback or need assistance with the MCP directory API, please join our Discord server