Skip to main content
Glama

Tillpad MCP

エージェントジョブ向けの境界付きストレージと検索。

Remote MCP Transport Auth License: MIT

Tillpadは、エージェントに名前空間付きキーバリューストレージ、ファイルアップロード+セマンティック検索、予算対応メータリング、そしてジョブ完了時に署名付きレシートとともに消去されるランキーを提供します。

ライブエンドポイント: https://tillpad.cnrcode.com/mcp

このリポジトリは、ディレクトリクローラー向けの公開カタログ兼スキーマスタブです。ホスト型サーバーではありません。MCPクライアントには、Tillpad APIキーを指定して上記のライブURLを設定してください。このリポジトリ内のTypeScriptを実行しても、ストレージや検索は一切行われません。

エージェントガイド: ディスカバリURL、認証、MCP接続スニペットについては、AGENTS.md を参照してください。

APIキーを取得する

ゼロヒューマン(エージェント)

  1. POST https://tillpad.cnrcode.com/api/agents/bootstrap{ "email": "agent@example.com" } とともに呼び出すと bootstrapToken が返ります(外部メールは送信されません)。

  2. Authorization: Bearer <bootstrapToken> と任意の { "sku": "pro_prepaid_30d" } を指定して POST https://tillpad.cnrcode.com/api/billing/machine-pay を呼び出します。

  3. Stripe MPP($9.00 / 30日)で決済すると、レスポンスに secrettp_…)と planPeriodEnd が含まれます。

scratchpad.txtllms-full.txt を参照してください。法的情報: 利用規約

ヒューマン向けの手順

  1. tillpad.cnrcode.com を開いてアカウントを作成します。

  2. Pricing でTillpad Proに登録し、ダッシュボードでAPIキーを発行します。シークレットは tp_ で始まります。

  3. 継続的なアクセスにはアカウントキーを、ジョブの期限切れと消去が必要な場合はランキーを使用します。

実際のキーをコミットしないでください。設定では tp_… プレースホルダーを使用します。

Related MCP server: ContextKeep

クライアントを接続する

トランスポートはStreamable HTTPです。すべてのリクエストで Authorization: Bearer tp_… を送信します。

Cursor

ユーザーまたはプロジェクトのMCP設定:

{
  "mcpServers": {
    "tillpad": {
      "url": "https://tillpad.cnrcode.com/mcp",
      "headers": {
        "Authorization": "Bearer tp_…"
      }
    }
  }
}

Claude Desktop / Claude Code

{
  "mcpServers": {
    "tillpad": {
      "command": "npx",
      "args": ["mcp-remote", "https://tillpad.cnrcode.com/mcp", "--header", "Authorization: Bearer tp_…"]
    }
  }
}

汎用リモートMCP

{
  "url": "https://tillpad.cnrcode.com/mcp",
  "headers": {
    "Authorization": "Bearer tp_…"
  }
}

プロダクトホスト上のディスカバリマニフェスト:

ツール

src/server.ts 内のスキーマはホスト型サーバーと一致しています。

Tool

説明

usage_get

現在の期間の使用量とクォータ

budget_get

残りのクォータ、ソフトしきい値、チェックアウトURL

budget_estimate

消費前に402/429を事前確認(rag_index の場合は textLength / byteLength

billing_machine_pay

エージェントがStripe MPP経由でプリペイドProを有効化、またはSKUを購入する方法(sku は任意)

agent_bootstrap

ゼロヒューマンオンボーディング: メールからブートストラップトークンを取得(外部メールは送信されません)

keys_create

アカウントの tp_ キーからラン/サブキーを発行

kvp_put

名前空間/キーに文字列を保存(レスポンスに budget が含まれます)

kvp_get

名前空間付きの値を読み取る

kvp_delete

KVPキーを削除

kvp_list

名前空間内のキーを一覧表示

file_upload

RAGインデックス用にUTF-8テキストをアップロード(rag_index をプリフライト)

files_list

アップロード済みファイルを一覧表示

files_types

対応するアップロード拡張子とMIMEタイプ

rag_search

インデックス化されたドキュメントに対するセマンティック検索

inspect_storage

名前空間のインベントリ(該当する場合はキーにスコープ)

run_finish

このランキーにバインドされた名前空間を消去し、署名付き消去レシートを返す

support_contact

ProアカウントからTillpadサポートに連絡。返信はアカウントのメールアドレスに送信されます

典型的なエージェントのループ

  1. ダッシュボードでランキーを発行します(専用名前空間、TTL、任意のオペレーション予算)。

  2. kvp_putfile_upload で作業状態を保存します。

  3. kvp_get / kvp_listrag_search で取得します。

  4. run_finish を呼び出してラン名前空間を消去し、署名付きレシートを保持します。

大規模なインデックスジョブの前に budget_estimate を使用してください。budget_get / usage_get で期間内の残量を確認できます。

認証とエラー

  • 401Authorization: Bearer tp_… が欠落しているか無効

  • 402 / 429 — プランまたはクォータ。JSONには codestatusactionsbudget が含まれます

    • actions[].type: "checkout"定期のヒューマン向けサブスクリプション用のホスト型Stripe Checkout URL

    • actions[].type: "machine_pay" — Stripe MPP経由のエージェント向けプリペイドPro(30/90日)またはチャージアップSKU。デフォルトのSKUは pro_prepaid_30d で $9.00

これはStripe Machine Payments Protocolであり、ChatGPT Instant Checkout / ACPではありません。

プロダクトドキュメント

Tillpadプロダクト(Worker、課金、ストレージ)はクローズドソースです。このカタログはMITライセンスであり、ディレクトリがツールとインストールスニペットを掲載できるようになっています。

ディレクトリ掲載

レジストリ名: com.cnrcode/tillpadcnrcode.com によるドメイン名前空間)。

  1. https://cnrcode.com/.well-known/mcp-registry-auth がデプロイされていることを確認します(cnrcode-site リポジトリ)。

  2. GitHubリポジトリのシークレット MCP_PRIVATE_KEY を設定します(16進数。cnrcode-site の鍵生成スクリプトを参照)。

  3. バージョンタグをプッシュすると、GitHub Actionsserver.json公式MCPレジストリに公開します:

    git tag v0.1.1
    git push origin v0.1.1
  4. 任意で https://github.com/number1101/tillpad-mcpmcp.directory/submit に提出します。

Glama

このリポジトリにはstdioカタログスタブsrc/main.ts)が含まれており、Glama がコンテナをビルドしてプロセスを起動し、17個のツール定義をイントロスペクトできます。ストレージや課金は実装されていません。クライアントは引き続き上記のホスト型エンドポイントに接続します。

掲載: glama.ai/mcp/servers/number1101/tillpad-mcp

glama.json でクレームした後、Dockerfile管理ページを設定します:

フィールド

ビルド手順

["npm ci", "npm run build"]

CMD引数

["node", "dist/main.js"]

環境変数スキーマ

デフォルト(空 — 認証情報は不要)

プレースホルダーパラメータ

{}

Glamaはそのフォームから独自のDockerfileを生成します。リポジトリの Dockerfile はローカルのスモークテスト専用です。

スコアバッジ(awesome-mcp-serversなどのリスト用):

[![number1101/tillpad-mcp MCP server](https://glama.ai/mcp/servers/number1101/tillpad-mcp/badges/score.svg)](https://glama.ai/mcp/servers/number1101/tillpad-mcp)

ローカル検証:

npm ci && npm run build && npm start   # hangs on stdio — expected
docker build -t tillpad-mcp-stub . && docker run -i tillpad-mcp-stub

完全なステップバイステップ(クレーム、管理Dockerfile、リリース、awesome-mcp PR): docs/glama-release.md

ライセンス

MIT — カタログ、ドキュメント、スキーマスタブのみ。

F
license - not found
B
quality
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

  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides AI agents with persistent, searchable memory that survives across conversations using semantic search, temporal versioning, and smart organization. Enables long-term context retention and cross-session continuity for AI assistants.
    14
  • A
    license
    Not graded
    quality
    A
    maintenance
    Provides infinite long-term memory for AI agents with persistent, searchable storage of project details, preferences, and snippets. Reduces token costs by retrieving only relevant memories while keeping all data stored locally.
    154
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides persistent memory storage for AI agents with full-text search, tagging, and importance levels, enabling agents to store and retrieve memories efficiently.
    MIT

View all related MCP servers

Related MCP Connectors

  • Persistent memory for AI agents — verbatim conversations, searchable by meaning.

  • Persistent memory for AI agents. Search, store, and recall across sessions.

  • Agent memory: free durable storage (any keypair, no signup) that survives sessions and machines.

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/number1101/tillpad-mcp'

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