From toolscript
Discovers and executes MCP tools via toolscript gateway CLI. Search for tools, generate TypeScript code, list servers/tools, and exec single/multi-line scripts proactively before specialized tasks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/toolscript:skills/toolscriptThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Discover and execute MCP tools through the toolscript gateway.
Discover and execute MCP tools through the toolscript gateway.
Use proactively: Before operations, search for specialized MCP tools.
# 1. Search for tools and get TypeScript code
toolscript search "what you need" --output types
# 2. Execute - single line
toolscript exec 'import {tools} from "toolscript"; console.log(await tools.server.toolName({param: "value"}))'
# 3. Execute - multi-line (use Write tool for /tmp/<filename>.ts)
toolscript exec -f /tmp/<filename>.ts
import { tools } from "toolscript";
const result = await tools.serverName.toolName({param: "value"});
console.log(result)
toolscript get-types --filter <tool-name>,<2nd-tool-name> if you know the toolstoolscript list-servers and toolscript list-tools <server>references/commands.md - All commands and optionsreferences/examples.md - Working examples and workflowsreferences/configuration.md - Gateway and server setupreferences/troubleshooting.md - Diagnostics and fixesnpx claudepluginhub mKeRix/toolscript --plugin toolscriptDiscovers and executes MCP tools via toolscript gateway CLI. Search for tools, generate TypeScript code, list servers/tools, and exec single/multi-line scripts proactively before specialized tasks.
Discovers MCP servers from registry by query, inspects capabilities, and executes TS/JS via generated client modules. For dynamic MCP tool integrations like Cloudflare.
List tools and invoke calls on MCP servers using fastmcp CLI. Handles HTTP/Python files/configs/stdio targets, schemas, JSON output, auth, and discovery for workflows.