← Back to list

toolscript
by mKeRix
Efficient MCP tool calling in code mode for Claude Code
⭐ 20🍴 1📅 Jan 14, 2026
SKILL.md
name: toolscript description: Discover and execute MCP tools via gateway. Use when user asks to "call tool", "list tools", or before performing tasks that might have specialized MCP capabilities.
Toolscript Skill
Discover and execute MCP tools through the toolscript gateway.
Use proactively: Before operations, search for specialized MCP tools.
Quick Start
# 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
Toolscript Format
import { tools } from "toolscript";
const result = await tools.serverName.toolName({param: "value"});
console.log(result)
Alternative Workflows
- Direct access: Use
toolscript get-types --filter <tool-name>,<2nd-tool-name>if you know the tools - Browse discovery: Use
toolscript list-serversandtoolscript list-tools <server>
References
references/commands.md- All commands and optionsreferences/examples.md- Working examples and workflowsreferences/configuration.md- Gateway and server setupreferences/troubleshooting.md- Diagnostics and fixes
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon