Skip to main content
Glama
GeiserX
by GeiserX

제공 기능

유형

용도

MCP URI / 도구 ID

리소스

수익, 서비스, 플릿 상태 및 상태 점수 읽기 전용 탐색

cashpilot://earnings/summarycashpilot://earnings/breakdowncashpilot://services/deployedcashpilot://services/catalogcashpilot://fleet/summarycashpilot://workerscashpilot://health/scorescashpilot://collector-alerts

도구

수익 조회, 서비스 관리 및 수집 트리거

get_earnings_dailyget_earnings_historyget_service_logsrestart_servicestop_servicestart_servicedeploy_serviceremove_servicetrigger_collectionget_compose

모든 기능은 단일 JSON-RPC 엔드포인트(/mcp)를 통해 노출됩니다. LLM/에이전트는 initialize -> readResource -> listTools -> callTool 등의 작업을 수행할 수 있습니다.


Related MCP server: OpenAPI MCP Server

빠른 시작 (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=your-admin-api-key

보안 참고: HTTP 전송은 기본적으로 127.0.0.1:8081에서 수신 대기합니다. 네트워크에 노출해야 하는 경우 인증이 포함된 리버스 프록시 뒤에 배치하십시오.

npm을 통한 설치 (stdio 전송)

npx cashpilot-mcp

또는 전역으로 설치:

npm install -g cashpilot-mcp
cashpilot-mcp

이 명령은 GitHub 릴리스에서 플랫폼에 맞는 사전 빌드된 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_URL

http://localhost:8080

CashPilot 인스턴스 URL (끝에 / 제외)

CASHPILOT_API_KEY

(필수)

인증을 위한 관리자 API 키

LISTEN_ADDR

127.0.0.1:8081

HTTP 수신 주소 (Docker는 0.0.0.0:8081로 설정)

TRANSPORT

(비어 있음 = HTTP)

stdio 전송을 사용하려면 stdio로 설정

.env 파일( .env.example에서 생성)에 넣거나 환경 변수로 설정하십시오.

테스트

Inspector로 테스트했으며 현재 완전히 작동합니다. 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 구현

GoReleaser -- 간편한 멀티 아키텍처 릴리스

관리자

@GeiserX.

기여

언제든 참여해 주세요! 이슈를 열거나 PR을 제출해 주십시오.

CashPilot-MCP는 Contributor Covenant 행동 강령을 따릅니다.

GeiserX의 다른 MCP 서버

관련 프로젝트

프로젝트

설명

CashPilot

설정 및 수익 추적을 위한 웹 UI가 포함된 자체 호스팅 수동 소득 플랫폼

CashPilot-android

CashPilot 수동 소득 앱을 위한 Android 모니터링 에이전트

cashpilot-ha

CashPilot 수동 소득 모니터링을 위한 Home Assistant 커스텀 통합

n8n-nodes-cashpilot

CashPilot 수동 소득 모니터링을 위한 n8n 커뮤니티 노드

Install Server
A
license - permissive license
A
quality
A
maintenance

Maintenance

Maintainers
Response time
1wRelease cycle
5Releases (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
    A
    quality
    D
    maintenance
    A generic MCP server that dynamically exposes any OpenAPI-documented REST API to LLMs by auto-discovering endpoints. It provides tools for exploring API capabilities and making authenticated requests directly through natural language interfaces.
    2
    9
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables LLMs to interact with any REST API that has an OpenAPI specification by providing a lightweight MCP server that translates between natural language and API calls.
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server for Gainium — manage trading bots, deals, and balances via AI assistants

  • MCP server exposing the Backtest360 engine API as tools for AI agents.

  • MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.

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/GeiserX/cashpilot-mcp'

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