Skip to main content
Glama

Tillpad MCP

面向代理任务的有界存储与搜索。

Remote MCP Transport Auth License: MIT

Tillpad 为代理提供命名空间键值存储、文件上传与语义搜索、预算感知计量,以及运行密钥——任务完成时可用签名回执擦除数据。

实时端点: https://tillpad.cnrcode.com/mcp

本仓库是面向目录爬虫的公开目录与模式存根,并非托管服务器。请将 MCP 客户端指向上述实时 URL,并使用 Tillpad API 密钥。运行本仓库中的 TypeScript 不会存储或搜索任何内容。

代理指南: 参见 AGENTS.md 了解发现 URL、认证和 MCP 连接片段。

获取 API 密钥

零人工(代理)

  1. POST https://tillpad.cnrcode.com/api/agents/bootstrap 发送 { "email": "agent@example.com" } → 获得 bootstrapToken(无外发邮件)。

  2. POST https://tillpad.cnrcode.com/api/billing/machine-pay 发送请求,携带 Authorization: Bearer <bootstrapToken> 及可选的 { "sku": "pro_prepaid_30d" }

  3. 结算 Stripe MPP($9.00 / 30 天)→ 响应中包含 secrettp_…)和 planPeriodEnd

参见 scratchpad.txtllms-full.txt。法律条款:条款

人工路径

  1. 打开 tillpad.cnrcode.com 并创建账户。

  2. 定价页面订阅 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 中的模式与托管服务器一致。

工具

功能

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

上传 UTF-8 文本用于 RAG 索引(prefLights rag_index

files_list

列出已上传文件

files_types

支持的上传扩展名和 MIME 类型

rag_search

对已索引文档进行语义搜索

inspect_storage

命名空间清单(适用时限定于该密钥)

run_finish

擦除绑定到此运行密钥的命名空间;返回签名擦除回执

support_contact

Pro 账户联系 Tillpad 支持;回复发送至账户邮箱

典型代理循环

  1. 在仪表盘中生成运行密钥(专用命名空间、TTL、可选操作预算)。

  2. 使用 kvp_put 和/或 file_upload 存储工作状态。

  3. 使用 kvp_get / kvp_listrag_search 检索。

  4. 调用 run_finish 擦除运行命名空间并保留签名回执。

大型索引任务前使用 budget_estimatebudget_get / usage_get 显示周期内剩余额度。

认证与错误

  • 401 — 缺少或无效的 Authorization: Bearer tp_…

  • 402 / 429 — 套餐或配额。JSON 包含 codestatusactionsbudget

    • actions[].type: "checkout" — 面向周期性人工订阅的托管 Stripe Checkout URL

    • actions[].type: "machine_pay" — 代理预付 Pro(30/90 天)或通过 Stripe MPP 充值 SKU;默认 sku pro_prepaid_30d,$9.00

这是 Stripe Machine Payments Protocol,而非 ChatGPT Instant Checkout / ACP。

产品文档

Tillpad 产品(Worker、计费、存储)为闭源。本目录以 MIT 许可发布,便于目录列出工具和安装片段。

目录列表

注册名称:com.cnrcode/tillpad(通过 cnrcode.com 的域名命名空间)。

  1. 确保 https://cnrcode.com/.well-known/mcp-registry-auth 已部署(cnrcode-site 仓库)。

  2. 设置 GitHub 仓库密钥 MCP_PRIVATE_KEY(十六进制;参见 cnrcode-site 密钥生成脚本)。

  3. 推送版本标签,使 GitHub Actionsserver.json 发布到官方 MCP 注册表

    git tag v0.1.1
    git push origin v0.1.1
  4. 可选:在 mcp.directory/submit 提交 https://github.com/number1101/tillpad-mcp

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