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

Cashpilot MCP

MCP Server

cashpilot-mcp

CashPilot-MCP是一个将CashPilot实例暴露为MCP服务器的桥接工具,使LLMs能够监控被动收入、管理服务和控制工作节点。

工具数

10

提示词数

0

GitHub Stars

2

资源数

0
Go模型集成AI代理

安装说明

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

作者 / 组织

GeiserX

提供方

GeiserX

最后核验

2026/5/17 20:20

运行时

Node.js

快速接入

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

命令预览

npx cashpilot-mcp

详细介绍

CashPilot-MCP

A tiny bridge that exposes any CashPilot instance as an MCP server, enabling LLMs to monitor passive income earnings, manage services, and control fleet workers.

______________________________________________________________________

你得到了什么

类型用途MCP URI/工具id
资源以只读方式浏览收入、服务、车队状态和健康评分cashpilot://earnings/summary

cashpilot://earnings/breakdown cashpilot://services/deployed cashpilot://services/catalog cashpilot://fleet/summary cashpilot://workers cashpilot://health/scores cashpilot://collector-alerts | | 工具 |查询收益、管理服务并触发收款| get_earnings_daily get_earnings_history get_service_logs restart_service stop_service start_service deploy_service remove_service trigger_collection get_compose |

所有内容都通过单个JSON-RPC端点公开(/mcp). LLM/代理人可以: initialize -> readResource -> listTools -> callTool …等等。

______________________________________________________________________

快速入门(Docker Compose)

services:
  cashpilot-mcp:
    image: drumsergio/cashpilot-mcp:latest
    ports:
      - "127.0.0.1:8081:8081"
    environment:
      - CASHPILOT_URL=http://cashpilot:8080
      - CASHPILOT_API_KEY=
安全说明: HTTP传输侦听 127.0.0.1:8081 默认情况下。如果需要在网络上公开它,请将其放置在具有身份验证的反向代理后面。

通过npm安装(stdio传输)

npx cashpilot-mcp

或全局安装:

npm install -g cashpilot-mcp
cashpilot-mcp

这将从GitHub Release为您的平台下载预构建的Go二进制文件,并使用stdio传输运行它。至少需要一个 出版发行.

本地建设

git clone https://github.com/GeiserX/cashpilot-mcp
cd cashpilot-mcp

# (optional) create .env from the sample
cp .env.example .env && $EDITOR .env

go run ./cmd/server

配置

变量默认值描述
CASHPILOT_URLhttp://localhost:8080CashPilot实例URL(不带尾随/)
CASHPILOT_API_KEY_(必填)_管理员API密钥(CASHPILOT_ADMIN_API_KEY 来自您的CashPilot实例——不是舰队密钥)
LISTEN_ADDR127.0.0.1:8081HTTP监听地址(Docker设置 0.0.0.0:8081)
TRANSPORT_(空=HTTP)_设置为 stdio 用于stdio传输

把它们放在一个 .env 文件(来自 .env.example)或者将它们置于环境中。

测试

经过测试 检查员 目前,它正在全面运作。在进行PR之前,请确保此MCP服务器通过此介质运行良好。

客户端LLM的示例配置

{
  "schema_version": "v1",
  "name_for_human": "CashPilot-MCP",
  "name_for_model": "cashpilot_mcp",
  "description_for_human": "Monitor passive income earnings, manage bandwidth-sharing services, and control fleet workers via CashPilot.",
  "description_for_model": "Interact with a CashPilot instance that manages passive income services. First call initialize, then reuse the returned session id in header \"Mcp-Session-Id\" for every other call. Use readResource to fetch URIs that begin with cashpilot://. Use listTools to discover available actions and callTool to execute them.",
  "auth": { "type": "none" },
  "api": {
    "type": "jsonrpc-mcp",
    "url":  "http://localhost:8081/mcp",
    "init_method": "initialize",
    "session_header": "Mcp-Session-Id"
  },
  "contact_email": "acsdesk@protonmail.com",
  "legal_info_url": "https://github.com/GeiserX/cashpilot-mcp/blob/main/LICENSE"
}

学分

CashPilot --被动收入车队管理仪表板

MCP-GO --现代MCP实施

GoRelease --无痛多弓松解术

维护者

@盖泽尔.

贡献

尽情潜水吧! 打开一个问题 或提交PR。

CashPilot MCP遵循 贡献者契约 行为准则。

GeiserX的其他MCP服务器

相关项目

项目描述
CashPilot自托管被动收入平台,具有用于设置和收入跟踪的web UI
CashPilot安卓版CashPilot被动收入应用程序的Android监控代理
现金飞行员haHome Assistant定制集成,用于CashPilot被动收入监控
n8n节点现金飞行员用于CashPilot被动收入监控的n8n社区节点

目录标签

目录标签

Go模型集成AI代理被动收入管理本地部署服务管理工作节点控制LLM集成JSON-RPC

接入字段

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

stdio

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

session

运行时(runtime,运行环境)

Node.js

来源包(packageName,安装包名)

cashpilot-mcp

工具数量(toolCount,工具数)

10

资源数量(resourceCount,资源数)

0

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

0

权限和风险

stdiosession部署方式未说明

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

安装前确认

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

来源信息

继续浏览同类 MCP