clacky-ai/openclacky/lib/clacky/default_skills/mcp-manager/SKILL.md
mcp-manager
Manage MCP (Model Context Protocol) servers for openclacky: add, list, probe, remove, reconfigure. Edits ~/.clacky/mcp.json so the user never writes JSON by hand. Trigger on: add mcp, install mcp, setup mcp, configure mcp, mcp list, mcp remove, mcp probe, mcp reconfigure.
- Source repository stars
- 1,160
- Declared platforms
- 0
- Static risk flags
- 4
- Last source update
- 2026-08-04
- Source checked
- 2026-08-04
Decision brief
What it does—and where it fits
Manage MCP servers for openclacky. The user's MCP configuration lives at /.clacky/mcp.json (the same format Claude Desktop and Cursor use). You never ask the user to edit it by hand — you do it for them through the local clacky HTTP API.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/clacky-ai/openclacky --skill "lib/clacky/default_skills/mcp-manager"Inspect the Agent Skill "mcp-manager" from https://github.com/clacky-ai/openclacky/blob/faaa347a1fd5a855f8e205c379c4994e757b703c/lib/clacky/default_skills/mcp-manager/SKILL.md at commit faaa347a1fd5a855f8e205c379c4994e757b703c. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Step 1 — Identify intent
If the user's first message already names a server (e.g. "add filesystem"),
If the user's first message already names a server (e.g. "add filesystem"),Otherwise, ask one open question: "What would you like Clacky to beMatch their answer to the catalog. If multiple match, present 2–3 options - 02
Step 2 — Environment preflight
Before asking for parameters, check the runtime is installed:
Before asking for parameters, check the runtime is installed: - 03
Step 3 — Collect parameters
Ask only for the business-meaningful params from the catalog entry: - For filesystem: which directory? Default offer: /Documents. Resolve to an absolute path before saving. - For github/brave-search/slack: tell them where to get the token, then ask them to paste it. - For postgr…
For filesystem: which directory? Default offer: /Documents. ResolveFor github/brave-search/slack: tell them where to get the token, thenFor postgres: ask for the connection URL. - 04
Step 4 — Confirm
Show the user the spec you're about to save, in plain language:
Show the user the spec you're about to save, in plain language:I'll add a server called filesystem that runs npx -y @modelcontextprotocol/server-filesystem /Users/me/Documents. It'll let me read and write files in your Documents folder. OK?For secrets (tokens, passwords), echo only the last 4 characters: ...abcd. - 05
Step 5 — Save
If the response has "ok": false, show the error and ask the user how to proceed (retry, edit, abort).
If the response has "ok": false, show the error and ask the user how to proceed (retry, edit, abort).
Permission review
Static risk signals and limitations
Network access
The documentation includes network, browsing, or remote request actions.
| `add mcp`, `install mcp`, `connect <something>`, "I want clacky to read my files / access github / query my db / search the web" | `add` |Network access
The documentation includes network, browsing, or remote request actions.
BASE="http://${HOST}:${PORT}"Sends data out
The documentation includes sending, uploading, or posting data to a remote service.
| Add a server | `curl -s -X POST ${BASE}/api/mcp -H 'Content-Type: application/json' -d '{...}'` |Sends data out
The documentation includes sending, uploading, or posting data to a remote service.
| Update a server | `curl -s -X PUT ${BASE}/api/mcp/<name> -H 'Content-Type: application/json' -d '{...}'` |Reads files
The documentation asks the agent to read local files, directories, or repositories.
I'll add a server called **filesystem** that runs `npx -y @modelcontextprotocol/server-filesystem /Users/me/Documents`. It'll let me read and write files in your Documents folder. OK?Writes files
The documentation asks the agent to create, modify, or delete local files.
I'll add a server called **filesystem** that runs `npx -y @modelcontextprotocol/server-filesystem /Users/me/Documents`. It'll let me read and write files in your Documents folder. OK?Writes files
The documentation asks the agent to create, modify, or delete local files.
**Stay in scope.** If the user wants to write/edit a non-MCP file or doEvidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 86/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 1,160 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- clacky-ai/openclacky
- Skill path
- lib/clacky/default_skills/mcp-manager/SKILL.md
- Commit
- faaa347a1fd5a855f8e205c379c4994e757b703c
- License
- MIT
- Collected
- 2026-08-04
- Default branch
- main
View the original SKILL.md
MCP Manager Skill
Manage MCP servers for openclacky. The user's MCP configuration lives at
~/.clacky/mcp.json (the same format Claude Desktop and Cursor use). You never
ask the user to edit it by hand — you do it for them through the local clacky
HTTP API.
Command Parsing
| User says | Subcommand |
|---|---|
add mcp, install mcp, connect <something>, "I want clacky to read my files / access github / query my db / search the web" | add |
mcp list, mcp status, "what mcps do I have" | list |
mcp probe <name>, "what tools does have" | probe |
mcp remove <name>, mcp delete <name> | remove |
mcp reconfigure <name>, mcp fix <name> | reconfigure |
If the intent is unclear, default to add — it's the most common ask.
Server Coordinates
All API calls go to the local clacky server. The host and port are exposed via environment variables:
HOST="${CLACKY_SERVER_HOST:-127.0.0.1}"
PORT="${CLACKY_SERVER_PORT:-7070}"
BASE="http://${HOST}:${PORT}"
All write operations require requests to come from 127.0.0.1 or ::1. They
will, because we're running locally.
API Cheat Sheet
| Action | Call |
|---|---|
| List configured servers | curl -s ${BASE}/api/mcp |
| Add a server | curl -s -X POST ${BASE}/api/mcp -H 'Content-Type: application/json' -d '{...}' |
| Update a server | curl -s -X PUT ${BASE}/api/mcp/<name> -H 'Content-Type: application/json' -d '{...}' |
| Remove a server | curl -s -X DELETE ${BASE}/api/mcp/<name> |
| Probe tools | curl -s -X POST ${BASE}/api/mcp/<name>/probe |
Request body for create/update — stdio (local process, default):
{
"name": "filesystem",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/me/Documents"],
"env": { "API_KEY": "xxx" },
"description": "Read/write files in ~/Documents"
}
Request body for create/update — http (remote server, streamable-http):
{
"name": "linear",
"type": "http",
"url": "https://mcp.linear.app/sse",
"headers": { "Authorization": "Bearer lin_api_xxx" },
"description": "Linear issues and projects"
}
If type is omitted but url is present, the server treats it as http.
Known-Good Server Catalog
When the user describes what they want, match it to one of these and propose it.
Each entry: package, what it does, required params, recommended description.
1. filesystem — read/write local files
- When: "read my files", "access my desktop", "browse my code"
- Command:
npx - Args:
["-y", "@modelcontextprotocol/server-filesystem", "<ABSOLUTE_PATH>"] - Required: absolute directory path (ask user; default to
~/Documents) - Tools: read_file, write_file, list_directory, search_files, etc.
2. github — GitHub repos, issues, PRs
- When: "access github", "manage my repos", "read my issues"
- Command:
npx - Args:
["-y", "@modelcontextprotocol/server-github"] - Env:
{ "GITHUB_PERSONAL_ACCESS_TOKEN": "<TOKEN>" } - Required: PAT from https://github.com/settings/tokens (recommend
reposcope)
3. fetch — fetch HTTP URLs as markdown
- When: "fetch web pages", "read articles by url"
- Command:
uvx - Args:
["mcp-server-fetch"] - Required: nothing
- Note: needs Python
uvinstalled (brew install uv)
4. memory — persistent knowledge graph
- When: "remember things across sessions", "give clacky long-term memory"
- Command:
npx - Args:
["-y", "@modelcontextprotocol/server-memory"] - Required: nothing
5. postgres — query a Postgres database
- When: "query my database", "connect to postgres"
- Command:
npx - Args:
["-y", "@modelcontextprotocol/server-postgres", "<DATABASE_URL>"] - Required: DATABASE_URL like
postgresql://user:pass@host:5432/dbname
6. slack — Slack messages
- When: "read slack", "send slack messages"
- Command:
npx - Args:
["-y", "@modelcontextprotocol/server-slack"] - Env:
{ "SLACK_BOT_TOKEN": "xoxb-...", "SLACK_TEAM_ID": "T..." } - Required: bot token and team id (Slack admin → app config)
7. brave-search — web search via Brave API
- When: "search the web", "give clacky search"
- Command:
npx - Args:
["-y", "@modelcontextprotocol/server-brave-search"] - Env:
{ "BRAVE_API_KEY": "<KEY>" } - Required: free API key from https://api.search.brave.com/
8. puppeteer — browser automation
- When: "automate the browser", "scrape with js"
- Command:
npx - Args:
["-y", "@modelcontextprotocol/server-puppeteer"] - Required: nothing (downloads Chromium on first run)
Custom (anything else)
If the user names a package or path you don't recognize, take the spec from them
verbatim and pass it through. Always confirm command, args, and env back
in plain language before saving.
Remote / HTTP servers (streamable-http)
Some MCP servers are hosted services and don't ship as a CLI — you connect over
HTTPS instead. Trigger when the user gives you a URL ending in /mcp,
/sse, or hosted on *.mcp.* / mcp.*.app, or says "the server is at
https://...".
- Type:
http - Required:
url(the streamable-http endpoint) - Optional:
headers— typically{ "Authorization": "Bearer <token>" }
Examples of remote MCP servers in the wild:
- Linear:
https://mcp.linear.app/sse(Bearer API key) - Cloudflare:
https://<workers-subdomain>.workers.dev/mcp(Bearer token) - GitHub Copilot:
https://api.githubcopilot.com/mcp/(OAuth, advanced)
When the user pastes a URL, ask:
- What service is this? (so you can pick a
nameanddescription) - Does it need an authorization header? If yes, paste the token.
Save with type: "http". The local clacky never spawns a process for these —
it just POSTs JSON-RPC over HTTPS.
⚠️ Wrapping a regular CLI tool: if the user gives you a CLI command that is not a stdio MCP server (e.g.
mcp-cli,some-api-cli login), do NOT save it as a stdio MCP entry — it won't speak JSON-RPC over stdin. Tell them: "This looks like a regular CLI, not an MCP server. Does the service offer an HTTPS endpoint instead?"
Subcommand: add — the primary flow
Goal: the user describes what they want, you produce a working MCP entry + confirm it works. Keep questions minimal.
Step 1 — Identify intent
- If the user's first message already names a server (e.g. "add filesystem"), pick that catalog entry directly.
- Otherwise, ask one open question: "What would you like Clacky to be able to do? (e.g. read your files, access GitHub, search the web)"
- Match their answer to the catalog. If multiple match, present 2–3 options with one-line descriptions and let them pick.
Step 2 — Environment preflight
Before asking for parameters, check the runtime is installed:
# For npx-based servers
which npx >/dev/null 2>&1 || echo "MISSING_NPX"
# For uvx-based servers
which uvx >/dev/null 2>&1 || echo "MISSING_UVX"
If missing, tell the user how to install (brew install node for npx,
brew install uv for uvx) and stop. Do not proceed.
Step 3 — Collect parameters
Ask only for the business-meaningful params from the catalog entry:
- For
filesystem: which directory? Default offer:~/Documents. Resolve~to an absolute path before saving. - For
github/brave-search/slack: tell them where to get the token, then ask them to paste it. - For
postgres: ask for the connection URL.
Never invent values. If you don't have a sensible default, ask.
Step 4 — Confirm
Show the user the spec you're about to save, in plain language:
I'll add a server called filesystem that runs
npx -y @modelcontextprotocol/server-filesystem /Users/me/Documents. It'll let me read and write files in your Documents folder. OK?
For secrets (tokens, passwords), echo only the last 4 characters: ***...abcd.
Step 5 — Save
For stdio:
curl -s -X POST ${BASE}/api/mcp \
-H 'Content-Type: application/json' \
-d '{
"name": "filesystem",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/me/Documents"],
"description": "Read/write files in ~/Documents"
}'
For http:
curl -s -X POST ${BASE}/api/mcp \
-H 'Content-Type: application/json' \
-d '{
"name": "linear",
"type": "http",
"url": "https://mcp.linear.app/sse",
"headers": { "Authorization": "Bearer lin_api_xxx" },
"description": "Linear issues and projects"
}'
If the response has "ok": false, show the error and ask the user how to
proceed (retry, edit, abort).
Step 6 — Probe
Immediately verify the server starts and exposes tools:
curl -s -X POST ${BASE}/api/mcp/filesystem/probe
ok: true: extracttools[], summarize for the user. Example:Done. filesystem is working — Clacky now has 11 new tools (read_file, write_file, list_directory, ...). Try asking me to list files in your Documents folder.
ok: false: show the error verbatim and offer common fixes:- "command not found" → wrong runtime, suggest re-running with correct one
- "ENOENT" / "no such file" → bad path, ask for a valid one
- timeout → package may be downloading on first run; suggest retrying
- auth-related → token wrong/expired, offer
reconfigure
Step 7 — Hint at next steps
End with a one-line nudge: how the user can use the new MCP next. Examples:
- filesystem: "Try: list the files in my Documents folder"
- github: "Try: show me my open PRs"
- fetch: "Try: fetch https://news.ycombinator.com and summarize"
Subcommand: list
curl -s ${BASE}/api/mcp
Render as a short table. If configured: false, say so and offer to run add.
| Name | Command | Args summary | Has env |
|--------------|---------|------------------------|---------|
| filesystem | npx | @modelcontextprotocol… | no |
| github | npx | @modelcontextprotocol… | yes |
Don't show full args if they contain absolute paths — collapse them with ….
Subcommand: probe <name>
curl -s -X POST ${BASE}/api/mcp/<name>/probe
If ok: true, list every tool with a one-line description. If ok: false, run
the same error-fixing flow as in add step 6.
Subcommand: remove <name>
- Confirm with the user first: "Remove ? Its tools will no longer be available to Clacky. (Y/n)"
- On yes:
curl -s -X DELETE ${BASE}/api/mcp/<name> - Confirm completion in one line.
Subcommand: reconfigure <name>
- Fetch current spec from
/api/mcpand show it back. - Ask which fields to change (path / token / args).
- Build the new spec and
PUT /api/mcp/<name>. - Probe to verify, same as
addstep 6.
General Rules
- Never write directly to
~/.clacky/mcp.json. Always go through the API. - Never echo full secrets. Mask all but last 4 chars of tokens/URLs.
- One question at a time. Don't dump a form on the user.
- Stop on errors. Don't proceed past a failed preflight or probe.
- Quote real error messages. Don't paraphrase API errors — users may need to google them.
- Stay in scope. If the user wants to write/edit a non-MCP file or do unrelated work, hand back to the main agent.
Alternatives
Compare before choosing
alirezarezvani/claude-skills
app-store-optimization
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
dotnet/skills
migrate-vstest-to-mtp
Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing
HKUDS/Vibe-Trading
strategy-generate
Create, modify, and optimize quantitative trading strategies, then backtest and evaluate them.
K-Dense-AI/scientific-agent-skills
dask
Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.