drio
Open app

Super Secret MCP Server

Source

Example node MCP server. When a user asks the agent for the passphrase, a special code phase is provided.

Catalog onlyCatalog onlySTDIO

Overview

The Super Secret MCP Server is a Model Context Protocol (MCP) server implemented in pure Node.js, designed to generate random combinations of US States and signature soups.

To use the server, clone the repository, install the dependencies, and start the server with the MCP Inspector. You can then interact with the server via STDIO.

  • Pure Node.js implementation - JSON-RPC 2.0 compliant - Custom logging system - Tool support with schema validation - Generates random US State and soup combinations
  1. Generating fun and random state-soup combinations for entertainment.
  2. Integrating with other applications to provide unique passcodes.
  3. Testing and development of MCP-based applications.

Add to your AI client

Use these steps to connect Super Secret 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-basic-test-gbti-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-basic-test-gbti-network"
      ]
    }
  }
}

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-basic-test-gbti-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-basic-test-gbti-network"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-basic-test-gbti-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-basic-test-gbti-network"
      ]
    }
  }
}

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-basic-test-gbti-network": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-basic-test-gbti-network"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-basic-test-gbti-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-basic-test-gbti-network"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-basic-test-gbti-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-basic-test-gbti-network"
      ]
    }
  }
}

FAQ

Can I customize the generated combinations?

Yes! You can modify the tool implementation to generate different combinations.

Is the server easy to set up?

Yes! The setup process is straightforward with clear instructions provided in the documentation.

What is the logging system used for?

The logging system helps in monitoring server operations and debugging issues.