From d4bcdea68687103bf5ab17f3c64f3a429a13fcf9 Mon Sep 17 00:00:00 2001 From: riderc <77925590+riderc@users.noreply.github.com> Date: Thu, 27 Aug 2026 16:37:26 -0700 Subject: [PATCH] Add community.tillpad Signed-off-by: riderc <77925590+riderc@users.noreply.github.com> --- servers/community.tillpad.json | 57 ++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 servers/community.tillpad.json diff --git a/servers/community.tillpad.json b/servers/community.tillpad.json new file mode 100644 index 0000000..0946cb6 --- /dev/null +++ b/servers/community.tillpad.json @@ -0,0 +1,57 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "community.tillpad", + "name": "Tillpad", + "alias": "tillpad", + "description": "Bounded storage and search for agent jobs", + "logo": "https://avatars.githubusercontent.com/u/7574682?v=4", + "schema_version": "2.1", + "categories": ["database", "search", "developer-tools"], + "tags": ["storage", "search", "agents", "jobs", "memory"], + "transport": { + "type": "http", + "url": "https://tillpad.cnrcode.com/mcp", + "headers": { + "Authorization": "Bearer ${input:TILLPAD_API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "TILLPAD_API_KEY", + "label": "Tillpad API Key", + "type": "text", + "required": true, + "secret": true, + "description": "API key for the hosted Tillpad MCP endpoint.", + "placeholder": "tp_...", + "obtain": { + "url": "https://tillpad.cnrcode.com/docs", + "instructions": "1. Sign in at https://tillpad.cnrcode.com\n2. Open the API keys section of your account\n3. Create a new key for McpMux\n4. Copy the key (starts with tp_)", + "button_label": "Get API Key" + } + } + ] + } + }, + "auth": { + "type": "api_key", + "instructions": "Requires a Tillpad API key (tp_...) sent as a Bearer token. See https://tillpad.cnrcode.com/docs" + }, + "contributor": { + "name": "riderc", + "github": "riderc", + "url": "https://github.com/riderc" + }, + "links": { + "repository": "https://github.com/number1101/tillpad-mcp", + "homepage": "https://tillpad.cnrcode.com", + "documentation": "https://tillpad.cnrcode.com/docs" + }, + "platforms": ["all"], + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +}