npx skills add smithery/parcadei --skill mcp-scripts
parcadei/continuous-claude-v3
mcp-scripts
MCP Script Rules
Installation
npx skills add parcadei/continuous-claude-v3 --skill mcp-scripts
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Expert skill for writing FreeCAD Python scripts, macros, and automation.
1.1K installsRun file-based C# apps with the .NET CLI when the user explicitly wants C#/.NET code without cr…
2K installsWrite Celigo JavaScript hook scripts -- preSavePage, preMap, postMap, postSubmit, postResponseM…
23 installsHome Assistant automations, scripts, and blueprints. Use when the user requests automation/scri…
784 installsCreate safe, reversible database migration scripts with rollback capabilities, data validation,…
411 installsLinker script skill for embedded bare-metal targets. Use when writing or modifying GNU ld linke…
385 installsAlso in this package
Other skills from parcadei/continuous-claude-v3 · top by installs.
npx skills add parcadei/continuous-claude-v3
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md810 B -
docs
SUMMARY.md32 B
History
- First seen on skills.sh
- First recorded snapshot · 487 installs
SKILL.md
MCP Script Rules
When working with files in scripts/:
DO
- Use CLI arguments for all parameters (argparse)
- Include USAGE docstring at top of file
- Use
callmcptool("server__tool", params)pattern - Handle errors gracefully with informative messages
- Print results to stdout for Claude to process
DON'T
- Hardcode parameters in the script
- Edit scripts to change parameters (use CLI args instead)
- Import from servers/ directly (use runtime.mcp_client)
Tool Naming
Tool IDs use double underscore: serverName__toolName
Examples:
morph__warpgrepcodebasesearchast-grep__ast_grepperplexity__perplexity_ask
Testing
Test with: uv run python -m runtime.harness scripts/<script>.py --help