Skip to content

Installation

One command to install. No build step, no configuration, no peer dependencies.

Terminal window
deno add jsr:@casys/mcp-server

Published on JSR, the modern JavaScript registry. Works with both Deno and Node.js.

RuntimeMinimum Version
Deno2.0+
Node.js22+
TypeScript5.0+ (recommended)

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:

Terminal window
deno run --allow-net server.ts

Build your first MCP server with a working tool in under a minute: Quick Start.