Nukez

§ docs · mcp

MCP server.

14 tools

§ examples

Setup, invoke, verify.

Three MCP-speaking clients, one Nukez server. Same tool schema, same envelope semantics.

Claude Desktop

$ npx @nukez/mcp --install-claude-desktop
# adds the Nukez server to ~/.claude/mcp.json
# restart Claude Desktop · tools appear in the tool drawer

Cursor

$ npx @nukez/mcp --install-cursor
# similar config at ~/.cursor/mcp.json

Programmatic client

import { McpClient } from "@modelcontextprotocol/sdk/client";

const client = new McpClient({ url: "https://mcp.nukez.xyz" });
await client.connect();
const tools = await client.listTools();
// tools.length === 14 — matches /v1/tools.json
Also in /how-it-works/examples →