Installation
One command to install. No build step, no configuration, no peer dependencies.
Install
Section titled “Install”deno add jsr:@casys/mcp-servernpx jsr add @casys/mcp-serverPublished on JSR, the modern JavaScript registry. Works with both Deno and Node.js.
Requirements
Section titled “Requirements”| Runtime | Minimum Version |
|---|---|
| Deno | 2.0+ |
| Node.js | 22+ |
| TypeScript | 5.0+ (recommended) |
Verify it works
Section titled “Verify it works”Create a server.ts file:
import { ConcurrentMCPServer } from "@casys/mcp-server";
const server = new ConcurrentMCPServer({ name: "test", version: "0.0.1",});
console.log("Ready — 0 tools registered, all systems go.");Run it:
deno run --allow-net server.tsnpx tsx server.tsNext up
Section titled “Next up”Build your first MCP server with a working tool in under a minute: Quick Start.