drio
Open app

Nekzus MCP Server

Source

MCP Server

Catalog onlyCatalog onlySTDIO

Overview

MCP Server is a Model Context Protocol (MCP) server that provides utility tools for development and testing, built on top of the official MCP SDK with an extensible architecture for adding new tools.

To use MCP Server, install it globally or locally via npm, and then execute it using the command line or import it as a dependency in your project.

  • MCP Protocol Implementation - Integrated Utility Tools - Schema Validation with Zod - ESM Support - Strict TypeScript Types - Extensible Architecture for New Tools
  1. Generating personalized greeting messages.
  2. Drawing random cards from a poker deck.
  3. Fetching current date and time for specific timezones.

Add to your AI client

Use these steps to connect Nekzus MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-nekzus": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-nekzus"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-nekzus": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-nekzus"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-nekzus": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-nekzus"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-nekzus": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-nekzus"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-nekzus": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-nekzus"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-nekzus": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-nekzus"
      ]
    }
  }
}

FAQ

How do I install MCP Server?

You can install it globally using `npm install -g @nekzus/mcp-server` or locally using `npm install @nekzus/mcp-server`.

Can I use MCP Server in my own projects?

Yes! You can import it as a dependency and utilize its features in your applications.

What programming language is MCP Server written in?

MCP Server is written in TypeScript.