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.
npx claudepluginhub mKeRix/toolscript --plugin toolscriptThis skill uses the workspace's default tool permissions.
Discover and execute MCP tools through the toolscript gateway.
CLI for listing, inspecting schemas, searching, and calling MCP server tools to interact with external systems like filesystems, GitHub, databases, and APIs.
Discovers MCP servers from registry by query, inspects capabilities, and executes TS/JS via generated client modules. For dynamic MCP tool integrations like Cloudflare.
Discover tools, resources, and prompts from MCP servers and invoke them on-demand via mcp CLI without permanent integration or context pollution.
Share bugs, ideas, or general feedback.
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 fixes