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.
Docker 20 tools
Git 9 tools
Database 31 tools
Network 30 tools
Text & Format 80 tools
Collections 20 tools
Crypto 21 tools
Math 19 tools
AI Agents 9 tools
Mock Data 27 tools
Colors 21 tools
Date & Time 9 tools
Validation 18 tools
Encoding 11 tools
QR & Barcodes 10 tools
Resilience 8 tools
3 Lines to Production
Use it as a standalone MCP server or import individual tools as a library. Your call.
import { serve } from "@casys/mcp-std/server";
// Start with all 508 tools
await serve();
// That's it. STDIO + HTTP on :3000 import { getToolByName } from "@casys/mcp-std";
const tool = getToolByName("git_status");
const result = await tool.handler({ path: "." });
console.log(result); import { getToolsByCategory } from "@casys/mcp-std";
// Load only what you need — not all 508 tools
const dbTools = getToolsByCategory("database"); // 18 tools
const gitTools = getToolsByCategory("git"); // 15 tools
// Or filter categories on the MCP server
import { serve } from "@casys/mcp-std/server";
await serve({ categories: ["database", "git", "text"] }); 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