@selfagency/beans-mcp
Official@selfagency/beans-mcp 🫘
Beans 課題トラッカー用の MCP(Model Context Protocol)サーバー。AI による Beans ワークスペースとの対話のためのプログラムインターフェースと CLI インターフェースを提供します。
ドキュメント: beans-mcp.self.agency
🤖 VS Code で Beans を GitHub Copilot と完全統合してお試しください!selfagency.beans-vscode 拡張機能をインストールしてください。
使用方法
npx @selfagency/beans-mcp /path/to/workspaceバージョニング
@selfagency/beans-mcp は独自のパッケージバージョン管理を行います。Beans CLI との互換性は別途追跡されます。
起動時に、サーバーはインストールされている beans CLI のバージョンと、ハードコードされたサポート対象 Beans バージョン 0.4.2 を比較します。異なる場合は、警告を stderr に出力して起動を続行します。
パラメータ
--workspace-rootまたは位置引数: ワークスペースのルートパス--cli-path: Beans CLI へのパス--port: MCP サーバーのポート(デフォルト: 39173)--log-dir: ログディレクトリ-h,--help: 使用方法を表示して終了
Related MCP server: jira-cli-mcp
公開 MCP ツールの概要
ツール | 説明 |
| ワークスペースを初期化します(オプションの |
| 完了または破棄された beans をアーカイブします。 |
|
|
| 新しい bean を作成します(タイトル/タイプ + オプションの body/parent)。 |
| 1 回の呼び出しで複数の bean を作成し、オプションで共通の親の下に配置します。 |
| メタデータと本文の更新を統合(status/type/priority/parent/clearParent/blocking/blockedBy/body/bodyAppend/bodyReplace)し、オプションの楽観的同時実行ヒント( |
| 1 回の呼び出しで複数の bean を更新し、オプションでそれらを共通の親に再割り当てします。 |
| bean 内のすべての Markdown チェックリストタスクを完了としてマークします。 |
| 1 つまたは複数の bean を削除します( |
| 完了または破棄された bean をアクティブなステータスで再開します。 |
| リスト/検索/フィルター/ソート/準備完了操作を統合し、GraphQL パススルーを提供します。 |
|
|
| 拡張機能の出力ログを読み取るか、ガイダンスを表示します。 |
beans_queryツールは意図的に広範です。bean のリスト、検索、フィルター、ソート、および Copilot 指示の生成(operation: 'llm_context')にはこちらを推奨します。すべてのファイルおよびログ操作はパスを検証し、ワークスペースまたは VS Code のログディレクトリ内に収まるようにします。
.beans/プレフィックスは自動的にパスから削除されます。some-bean.mdまたは.beans/some-bean.mdのどちらを渡しても結果は同じです。beans_updateは多くの細かい更新ツールを置き換えます。呼び出し側はこれを使用して、公開ツールの表面を小さく予測可能に保つ必要があります。beans_archiveは、完了/破棄された bean をアーカイブするための CLI パリティを提供します。beans_updateで親 bean を閉じる(status: completedまたはstatus: scrapped)と、同じステータスがすべての子孫にカスケードされます。beans_reopenで親 bean を再開すると、対象のステータスが閉じられた子孫(completed/scrapped)にカスケードされます。beans_bulk_createおよびbeans_bulk_updateはベストエフォートです。各項目を順次処理し、アトミックに失敗するのではなく、項目ごとの成功/エラーエントリを含む配列を返します。フロントマターの
title:値は書き込み時に自動的に二重引用符で囲まれます。生のタイトルを渡してください。引用符とエスケープは自動処理されます。beans_bean_fileはupdate_frontmatterをサポートし、アトミックなフロントマターのみの書き込みを行います。サポートされるフィールドにはprとbranchが含まれます。フィルタリングされていないリスト結果は、短いバースト TTL とタイムスタンププローブによるリフレッシュ戦略でキャッシュされます。変更ツール(
beans_create、beans_update、beans_deleteなど)はキャッシュを即座に無効化します。beans-mcpと Beans CLI のバージョン不一致は警告のみで、ブロックはしない設計です。ツール入力で
beanIdが欠落している場合、バリデーションエラーにはヒントが含まれます:「beanId」のことですか?
例
リクエスト:
{ "prefix": "project" }レスポンス(structuredContent):
{ "initialized": true }リクエスト:
{ "beanId": "bean-abc" }リクエスト(複数の bean):
{ "beanIds": ["bean-abc", "bean-def"] }レスポンス(structuredContent):
{
"bean": {
"id": "bean-abc",
"title": "Fix login timeout",
"status": "todo",
"type": "bug",
"priority": "critical",
"body": "...markdown...",
"createdAt": "2025-12-01T12:00:00Z",
"updatedAt": "2025-12-02T08:00:00Z"
}
}リクエスト:
{}レスポンス(例):
{ "archived": true, "archivedCount": 3 }リクエスト:
{
"title": "Add dark mode",
"type": "feature",
"status": "todo",
"priority": "normal",
"body": "Implement theme toggle and styles",
"parent": "epic-123"
}
descriptionはbodyの非推奨エイリアスとして受け入れられます。
レスポンス(structuredContent):
{
"bean": {
"id": "new-1",
"title": "Add dark mode",
"status": "todo",
"type": "feature"
}
}リクエスト:
{
"parent": "epic-123",
"beans": [
{ "title": "Design mockups", "type": "task" },
{ "title": "Implement API", "type": "task", "priority": "high" },
{ "title": "Write tests", "type": "task", "parent": "epic-456" }
]
}トップレベルの parent は、独自の parent を指定しない bean にデフォルトとして適用されます。ここでは Design mockups と Implement API が epic-123 に割り当てられ、Write tests は epic-456 で上書きされます。
レスポンス(structuredContent):
{
"requestedCount": 3,
"successCount": 3,
"failedCount": 0,
"results": [
{ "bean": { "id": "task-1", "title": "Design mockups" } },
{ "bean": { "id": "task-2", "title": "Implement API" } },
{ "bean": { "id": "task-3", "title": "Write tests" } }
]
}リクエスト(タスクのバッチを進行中に移動し、親に割り当てる):
{
"parent": "epic-123",
"beans": [
{ "beanId": "task-1", "status": "in-progress" },
{ "beanId": "task-2", "status": "in-progress" },
{ "beanId": "task-3", "status": "in-progress", "parent": "epic-456" }
]
}レスポンス(structuredContent):
{
"requestedCount": 3,
"successCount": 3,
"failedCount": 0,
"results": [
{ "beanId": "task-1", "bean": { "id": "task-1", "status": "in-progress" } },
{ "beanId": "task-2", "bean": { "id": "task-2", "status": "in-progress" } },
{ "beanId": "task-3", "bean": { "id": "task-3", "status": "in-progress" } }
]
}両方の一括ツールはベストエフォートです。部分的な失敗はバッチ全体を中断するのではなく、項目ごとに報告されます。
リクエスト(ステータス変更と blocking の追加):
{
"beanId": "bean-abc",
"status": "in-progress",
"blocking": ["bean-def"],
"ifMatch": "etag-value"
}リクエスト(アトミックな本文変更):
{
"beanId": "bean-abc",
"bodyReplace": [
{ "old": "- [ ] Task 1", "new": "- [x] Task 1" },
{ "old": "- [ ] Task 2", "new": "- [x] Task 2" }
],
"bodyAppend": "## Summary\n\nAll checklist items completed."
}注:
body(完全置換)は、同じリクエスト内でbodyAppendまたはbodyReplaceと組み合わせることはできません。
レスポンス(structuredContent):
{
"bean": {
"id": "bean-abc",
"status": "in-progress",
"blockingIds": ["bean-def"]
}
}リクエスト:
{ "beanId": "bean-old", "force": false }レスポンス:
{ "deleted": true, "beanId": "bean-old" }バッチリクエスト:
{ "beanIds": ["bean-old", "bean-older"], "force": false }バッチレスポンス(概要):
{
"requestedCount": 2,
"deletedCount": 2,
"failedCount": 0,
"results": [
{ "beanId": "bean-old", "deleted": true },
{ "beanId": "bean-older", "deleted": true }
]
}リクエスト:
{
"beanId": "bean-closed",
"requiredCurrentStatus": "completed",
"targetStatus": "todo"
}レスポンス:
{ "bean": { "id": "bean-closed", "status": "todo" } }リクエスト:
{ "beanId": "bean-abc" }レスポンス:
{
"bean": {
"id": "bean-abc",
"status": "todo"
},
"totalTaskCount": 5,
"updatedTaskCount": 3,
"unchangedTaskCount": 2
}リフレッシュ(すべての bean をリスト):
{ "operation": "refresh" }レスポンス(一部):
{ "count": 12, "beans": [] }フィルター(ステータス/タイプ/タグ):
{
"operation": "filter",
"statuses": ["in-progress", "todo"],
"types": ["bug", "feature"],
"tags": ["auth"]
}検索(全文):
{ "operation": "search", "search": "authentication", "includeClosed": false }ソート(モード: status-priority-type-title、updated、created、id):
{ "operation": "sort", "mode": "updated" }準備完了(アクション可能な bean のみ):
{ "operation": "ready" }LLM コンテキスト(Copilot 指示を生成、オプションでワークスペースに書き込み):
{ "operation": "llm_context", "writeToWorkspaceInstructions": true }レスポンス(structuredContent):
{
"graphqlSchema": "...",
"generatedInstructions": "...",
"instructionsPath": "/workspace/.github/instructions/beans-prime.instructions.md"
}生の GraphQL パススルー(beans query との CLI パリティ):
{
"operation": "graphql",
"graphql": "{ beans(filter: { type: [\"bug\"] }) { id title status } }"
}変数あり:
{
"operation": "graphql",
"graphql": "query($q: String!) { beans(filter: { search: $q }) { id title } }",
"variables": { "q": "authentication" }
}リクエスト(読み取り):
{ "operation": "read", "path": "beans-vscode-123--title.md" }レスポンス:
{
"path": "/workspace/.beans/beans-vscode-123--title.md",
"content": "---\n...frontmatter...\n---\n# Title\n"
}リクエスト(アトミックなフロントマター更新):
{
"operation": "update_frontmatter",
"path": "beans-vscode-123--title.md",
"fields": {
"status": "in-progress",
"pr": "123",
"branch": "feature/cascade-status-and-skills-npm"
}
}レスポンス:
{
"path": "/workspace/.beans/beans-vscode-123--title.md",
"bytes": 256,
"updatedFields": ["status", "pr", "branch"],
"frontmatter": {
"status": "in-progress",
"pr": "123",
"branch": "feature/cascade-status-and-skills-npm"
}
}リクエスト(最後の 200 行を読み取り):
{ "operation": "read", "lines": 200 }レスポンス:
{
"path": "/workspace/.vscode/logs/beans-output.log",
"content": "...log lines...",
"linesReturned": 200
}プログラムでの使用法
インストール
npm install beans-mcp例
import { createBeansMcpServer, parseCliArgs } from '@selfagency/beans-mcp';
const server = await createBeansMcpServer({
workspaceRoot: '/path/to/workspace',
cliPath: 'beans', // or path to beans CLI
});
// Connect to stdio transport or your own transportAPI
createBeansMcpServer(opts)
Beans MCP サーバーインスタンスを作成して初期化します。
オプション:
workspaceRoot(文字列): Beans ワークスペースへのパスcliPath(文字列、オプション): Beans CLI 実行可能ファイルへのパス(デフォルト: 'beans')name(文字列、オプション): サーバー名(デフォルト: 'beans-mcp-server')version(文字列、オプション): サーバーバージョンlogDir(文字列、オプション): サーバーログのディレクトリbackend(BackendInterface、オプション): カスタムバックエンド実装
戻り値: { server: McpServer; backend: BackendInterface }
startBeansMcpServer(argv)
サーバーを起動するための CLI 互換エントリポイント。
ユーティリティ関数
parseCliArgs(argv: string[]): CLI 引数を解析しますisPathWithinRoot(root: string, target: string): boolean: パスがルート内に含まれているか確認しますsortBeans(beans, mode): 指定されたモードで bean をソートします
型とスキーマ
GraphQL スキーマ、Zod バリデーションスキーマ、および Beans レコードと操作用の TypeScript 型のエクスポート。
エージェントスキル(skills-npm、skills.sh)
このパッケージには、skills/ 下に組み込みのエージェントスキルが同梱されており、skills.sh によって公開されているより広範なオープンスキルエコシステムに適合する形式でもそのスキルを公開しています。
パッケージ内のスキルパス:
skills/beans-mcp/SKILL.md公開されたスキルアーティファクト:
https://beans-mcp.self.agency/.well-known/agent-skills/beans-mcp/SKILL.md公開されたディスカバリーインデックス:
https://beans-mcp.self.agency/.well-known/agent-skills/index.json以下をスキャンするディスカバリーツールと互換性あり:
node_modules/**/skills/*/SKILL.md
つまり、skills-npm のような npm ベースのワークフローで使用できると同時に、skills.sh のようなスキルカタログで使用される公開スキルアーティファクトとディスカバリーインデックスをエコシステムツールが参照することも可能です。
インストールされた npm パッケージのスキルをエージェントワークスペースにシンボリックリンクするには、利用側プロジェクトで skills-npm を使用できます。
ライセンス
MIT
This server cannot be installed
Maintenance
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
- AlicenseAqualityCmaintenanceA MCP server for interacting with FogBugz issue tracker through LLMs such as Claude. Supports both the XML API (/api.asp) and the JSON API (/f/api/0/jsonapi) with automatic version detection at startup. Works with on-premise and on-demand FogBugz installations.19242MIT
- Alicense-qualityCmaintenanceMCP server that wraps the jira-cli command-line tool to enable AI assistants to interact with Jira.169MIT
- Flicense-qualityDmaintenanceMCP server for integrating Linear with Claude Code and other MCP clients. Enables issue management, project planning, and status tracking through a set of tools.
- Alicense-qualityAmaintenanceA local, provider-neutral MCP server for repository-scoped issue handling. It provides a guarded interface to Linear, GitHub Issues, GitHub Projects v2, and Jira Cloud, with preview/apply safety and host-local configuration.731MIT
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
MCP Server for Slima - AI Writing IDE for Novel Authors with AI Beta Reader.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/selfagency/beans-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server