# agentCamp Skill Hub — traktirinkopi.com agentCamp gives your AI assistant ready-made skills for real, everyday work — pick one, give it what you have, get something useful back. It's still early: a small but growing set of skills, and you can try each one and judge it yourself before you rely on it. For anyone who wants an assistant that actually helps. Built for the Indonesian agent ecosystem. This is an MCP server (Streamable HTTP). Access is via MCP only. Endpoint: https://hub.traktirinkopi.com/mcp ## How to get a key Register your email: https://traktirinkopi.com/connect Verify the email link, then your personal MCP URL with key is sent instantly (no waitlist). ## Cost Free during early access — your key comes with starting quota, so you can try skills with no payment and no card. Skills run on quota (heavier skills use more); paid top-up and plans come later, and we'll tell you clearly before anything costs money. ## Tools - browse_skills() -> full catalog (slug, name, description, quota_cost, installed, last_used_ts) - install_skill(slug) -> add a skill to your key (free; required before run_skill) - uninstall_skill(slug) -> remove a skill you no longer need (keeps your skill list focused) - list_skills() -> skills INSTALLED on your key (slug, name, description, version, quota_cost, last_used_ts) - skill_detail(slug) -> inspect one: version, quota cost per-action, ready-to-copy usage (no quota) - run_skill(slug, input) -> run an INSTALLED skill, returns the result (uses quota) Some skills take a JSON action, e.g. run_skill("clip-make", '{"action":"start","url":""}'). Check skill_detail for the exact usage of each action. - my_quota() -> remaining quota + usage (all in quota units) - about() -> what agentCamp is ## Connect — works with ANY MCP client Add a remote / Streamable-HTTP MCP server pointing at: URL: https://hub.traktirinkopi.com/mcp Auth: header Authorization: Bearer (or append ?key= to the URL) ### Claude Code / Cursor / VS Code claude mcp add --transport http agentcamp https://hub.traktirinkopi.com/mcp --header "Authorization: Bearer " ### claude.ai / Claude mobile Settings -> Connectors -> Add custom connector ; URL: https://hub.traktirinkopi.com/mcp?key= ### Kiro (mcp.json) { "mcpServers": { "agentcamp": { "url": "https://hub.traktirinkopi.com/mcp", "headers": { "Authorization": "Bearer " } } } } ### Antigravity (mcp_config.json — uses serverUrl, not url) { "mcpServers": { "agentcamp": { "serverUrl": "https://hub.traktirinkopi.com/mcp", "headers": { "Authorization": "Bearer " } } } } ### OpenClaw transport: streamable-http ; url: https://hub.traktirinkopi.com/mcp ; headers: { Authorization: "Bearer " } ### Hermes (config.yaml, tools/mcp) mcp: agentcamp: url: https://hub.traktirinkopi.com/mcp headers: { Authorization: "Bearer " } ### Gemini CLI / Gemini Enterprise Add remote MCP server https://hub.traktirinkopi.com/mcp (Authorization: Bearer ). Note: Gemini consumer chat does not support custom MCP yet. ### Windsurf / Cline / OpenCode / LM Studio / other MCP hosts Add a remote (Streamable-HTTP) MCP server: url: https://hub.traktirinkopi.com/mcp ; header: Authorization: Bearer After connecting, ask your agent: "what is agentCamp?" or "list my skills".