The MCP Standard Toolbox
508 Tools. One Import.
Database, git, docker, crypto, text, network, AI agents — every utility you'd write yourself, already tested and typed.
508 Tools
29 Categories
v0.4.0 Latest
29 Categories
From database queries to AI agent orchestration, every tool organized and ready to use.
3 Lines to Production
Use it as a standalone MCP server or import individual tools as a library. Your call.
// .mcp.json — add to Claude Desktop, Cursor, etc.
{
"mcpServers": {
"std": {
"command": "deno",
"args": ["run", "-A", "jsr:@casys/mcp-std/server"]
}
}
}
// 508 tools ready via STDIO import { getToolByName } from "@casys/mcp-std";
const tool = getToolByName("git_status");
const result = await tool.handler({ path: "." });
console.log(result); // Load only specific categories via CLI flag
// .mcp.json
{
"mcpServers": {
"std": {
"command": "deno",
"args": ["run", "-A", "jsr:@casys/mcp-std/server",
"--categories=database,git,text"]
}
}
}
// Or use as a library
import { getToolsByCategory } from "@casys/mcp-std";
const dbTools = getToolsByCategory("database"); Ready When You Are
One command. Works with Deno. Published on JSR, the modern JavaScript registry.
Deno
deno add jsr:@casys/mcp-std Binary
deno compile -A server.ts