Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/gotempsh/temps/temps-mcp-setupnpx skills add gotempsh/temps --skill temps-mcp-setupgit clone --depth 1 https://github.com/gotempsh/tempsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/gotempsh/temps/temps-mcp-setup)<a href="https://agentmods.dev/skills/gotempsh/temps/temps-mcp-setup"><img src="https://agentmods.dev/badge/skills/gotempsh/temps/temps-mcp-setup.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00180 | $0.03676 |
| Opus 5 | $0.00090 | $0.01838 |
| Sonnet 5 | $0.00036 | $0.00735 |
| Haiku 4.5 | $0.00018 | $0.00368 |
Grade B, and why
temps-mcp-setup scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Reads MCP configurationmediumAgent snooping
mcp.json carries server URLs and auth tokens; reading it lets a mod discover and abuse other integrations.
Restart the AI client after running `mcp add` -- most clients only read MCP config Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://localhost:8080/mcp/tools How it starts
The opening of the file, as written. The whole thing — 277 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Temps MCP Setup
Temps serves MCP (Model Context Protocol) directly from the temps binary itself
(ADR-039, crates/temps-mcp-server) -- there is no separate package to install or
keep up to date. The MCP endpoint calls the same service layer as the REST API, so
it cannot drift from it the way the old standalone @temps-sdk/mcp npm package did
(removed in PR #355 for exactly that reason -- do not reinstall it or point a
client at it).
Installer wizard lives in apps/temps-cli/src/commands/mcp/
(bunx @temps-sdk/cli mcp add|remove|status).
1. Enable the MCP server (operator, one-time per instance)
Off by default (AppSettings.mcp_server.enabled = false), so a fresh install never
exposes it unconfigured. Turn it on as an admin:
bunx @temps-sdk/cli mcp enable
If you're not logged in yet, mcp enable offers to run the device-flow login
inline (see Auth model, precisely
below) -- no separate temps login step required first.
mcp enable does the same GET-modify-PUT round-trip against /api/settings the
handler requires (it takes the full AppSettings object, not a partial patch),
merging onto whatever is already fetched so it can never clobber another admin's
settings. mcp disable reverses it.
Verify it took effect, or check status any time without re-running enable:
bunx @temps-sdk/cli mcp status
# "This instance: <check> enabled (http://localhost:8080)" or "<bullet> disabled (...)"
Or probe the endpoint directly (no auth needed for this one):
curl -s http://localhost:8080/mcp/tools
# {"groups":[{"key":"deployments","label":"Deployments & Projects"}, ...]}
# A 404 here means the flag is still off (or this instance predates MCP support).
2. Configure your AI client (per user, per client)
bunx @temps-sdk/cli mcp add <client>
<client> is one of: claude-code, claude-desktop, codex, cursor, vscode,
windsurf, zed.
Auth model, precisely: mcp add/mcp enable/mcp disable need you logged
into the CLI so the wizard can mint an API key on your behalf -- that login has
nothing to do with MCP itself. If you're not already logged in, these commands
detect that and offer to run the device-authorization flow right there (prompts
"Log in now?", then "Temps server URL", defaulting to your current config) rather
than erroring out and making you run temps login as a separate step first. Under
the hood it's the same flow temps login uses (/auth/cli/device/start +
/auth/cli/device/poll, server-authoritative polling, no code to type, browser
approval). In --yes (non-interactive) mode this inline offer is skipped --
pass --api-key or ensure a context is already logged in. What actually gets
written into the AI client's config either way is a plain, long-lived
Authorization: Bearer <api-key> header -- the same static-bearer-token pattern
PostHog's own MCP wizard uses, and one of the two auth patterns the MCP HTTP
transport spec supports (the other being full OAuth 2.1 + dynamic client
registration, which most of these 7 clients don't yet implement for remote MCP
servers anyway).
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 277 lines · 180 tokens per session scan B 8a56c7d75ce1
temps-mcp-setup is a skill published in the GitHub repository gotempsh/temps (712 stars, last pushed today), licensed Apache-2.0. It adds 180 tokens to every session and 3,676 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it B with 2 findings (reads mcp configuration, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
add-ci-area
Add a new project area to CI workflows.
gh-fix-ci
Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions; use gh to inspect checks and logs, summarize failure context, draft a fix plan, and implement only after explicit approval. Treat external providers (for example Buildkite) as out of scope and report only the details URL.
gitlab_pages_ci
GitLab CI — test job and GitLab Pages job (artifact public/); .gitlab-ci.yml templates.
docker-docs
Comprehensive Docker 28.x reference covering all features: installation, Dockerfile instructions, multi-stage builds, Docker Compose, networking, volumes, CLI commands, image management, registries, security best practices, CI/CD integration, debugging, and Kubernetes migration. Use whenever the user mentions Docker…
docker-devops
Create optimized Docker configurations, docker-compose setups, Kubernetes manifests, and CI/CD pipelines. Use when containerizing applications, setting up deployment infrastructure, or automating builds. Triggers on: Docker, Dockerfile, container, docker-compose, Kubernetes, k8s, CI/CD, GitHub Actions, deployment.
self-improve
Write features, fix bugs, and create PRs for the NanoClawbster codebase. Works in an isolated dev workspace, pushes via Composio (CI validates on GitHub Actions), and deploys after user approval.