Skip to main content
Glama

cueapi-mcp

CueAPI(AIエージェントのためのオープンソース実行説明責任プリミティブ)の公式Model Context Protocolサーバーです。

MCP対応のアシスタント(Claude Desktop、Cursor、Zed、その他のMCPホスト)に、エージェント作業のスケジュール設定、実行履歴の取得、証拠に基づいた成果報告によるループの完結といった機能を、会話の中から直接提供します。

なぜ必要なのか

CueAPIは、エージェントのサイレントな失敗を不可能にします。すべてのスケジュールされた実行は、サイクルが終了する前に、外部ID、結果URL、アーティファクトなどの「実際に何が起こったか」という証拠を返す必要があります。このMCPサーバーは、そのプリミティブをエージェント自身に直接公開するため、エージェントは自身のフォローアップ作業をスケジュールし、証拠を添えて成果を報告することができます。

インストール

npm install -g @cueapi/mcp
# or use via npx (no install):
npx -y @cueapi/mcp

設定 (Claude Desktop)

Claude Desktopの設定ファイル(macOSの場合は ~/Library/Application Support/Claude/claude_desktop_config.json)に以下を追加してください:

{
  "mcpServers": {
    "cueapi": {
      "command": "npx",
      "args": ["-y", "@cueapi/mcp"],
      "env": {
        "CUEAPI_API_KEY": "cue_sk_..."
      }
    }
  }
}

cueapi.aiでAPIキーを生成してください。セルフホストの場合は、CUEAPI_API_KEY と併せて CUEAPI_BASE_URL を設定してください。

設定 (Cursor / Zed / その他のホスト)

stdioサーバーをサポートするあらゆるMCPホストで実行可能です。ホストで cueapi-mcp バイナリを指定し、環境変数に CUEAPI_API_KEY を渡してください。

公開されているツール

ツール

説明

cueapi_create_cue

定期実行(cron)または単発(at)のキューを作成

cueapi_list_cues

キューを一覧表示し、ステータスでフィルタリング

cueapi_get_cue

単一のキューの詳細を取得

cueapi_pause_cue

キューを一時停止し、実行を停止

cueapi_resume_cue

一時停止したキューを再開

cueapi_delete_cue

キューを完全に削除

cueapi_list_executions

過去の実行履歴を一覧表示し、キュー/ステータスでフィルタリング

cueapi_report_outcome

証拠(外部ID / URL)を伴う書き込み専用の成果を報告

会話例

あなた: 毎日午前9時にダイジェストをWebhookに投稿するジョブをスケジュールして。

アシスタント (cueapi_create_cue を使用): キュー cue_abc123 を作成しました。初回実行は明日のUTC 9:00です。

あなた: 直近5回の実行履歴を見せて。

アシスタント (cueapi_list_executions を使用): ...

開発

npm install
npm test        # vitest smoke tests for the tool surface
npm run build   # compile TypeScript to dist/
npm run dev     # run the server locally with tsx

リンク

ライセンス

MIT © Vector Apps Inc.

Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - A tier

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

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/cueapi/cueapi-mcp'

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