1. Conduid
  2. Developer Tools
  3. Toolkit MCP Server
MCP server · Developer Tools

Toolkit MCP Server

A Model Context Protocol server providing LLM Agents with system utilities and tools, including IP geolocation, network diagnostics, system monitoring, cryptographic operations, and QR code generation.

61Good

Scored yesterday · breakdown

About Toolkit MCP Server

Toolkit MCP Server is an MCP server published by cyanheads in the Developer Tools category: a Model Context Protocol server providing LLM Agents with system utilities and tools, including IP geolocation, network diagnostics, system monitoring, cryptographic operations, and QR code generation. It has been installed 0 times through Conduid.

The repository has 18 stars and 8 forks, with the last commit 9 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx toolkit-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Toolkit MCP Server

Powered by Claude · Grounded in docs

I know everything about Toolkit MCP Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v2.2.2v2.2.2: Docker cross-compile fix · 22 Aug 2026Docker cross-compile fix Dockerfile build stage runs on $BUILDPLATFORM instead of emulating, fixing the multi-arch GHCR publish that aborted under QEMU on 2.2.1 (no image reached GHCR) Published image contents are unchanged — only the…
v2.2.1v2.2.1: mcp-ts-core 0.12.3 adoption and log-sink hardening · 22 Aug 2026mcp-ts-core 0.12.3 adoption and log-sink hardening Framework: `@cyanheads/mcp-ts-core` `^0.11.5` → `^0.12.3`, replacing the transitive `@modelcontextprotocol/sdk` `^1.30.0` with `@modelcontextprotocol/server`/`client` `^2.0.0`. Ships…
v2.2.0v2.2.0: Network diagnostics fixes and tool-definition hardening · 18 Aug 2026Network diagnostics fixes and tool-definition hardening Windows `ping`/`traceroute` now spawn correct binaries and flags, fixing a false unreachable report on a live host (#17) `check_network`'s `public_ip` mode no longer leaks raw…
v2.1.0v2.1.0: IPv6 allowlist, geolocate_ip hardening, framework sync · 18 Aug 2026IPv6 allowlist, geolocate_ip hardening, framework sync IPv6 private-range guard flipped from a denylist to an allowlist; hex-form IPv4-mapped addresses now classify like the dotted spelling (#14, #26) `toolkit_geolocate_ip` gains…
v2.0.1v2.0.1: QR capacity error, id batch monotonicity, geo rate limit · 28 Jun 2026QR capacity error, id batch monotonicity, geo rate limit Three bug fixes to existing tool and config contracts. Fixed: generate_qr rejects over-capacity payloads with a typed data_too_large (InvalidParams) error and recovery hint, not an…

README

toolkit-mcp-server

TypeScript Model Context Protocol Version License Status GitHub

A Model Context Protocol server providing LLM Agents with system utilities and tools, including IP geolocation, network diagnostics, system monitoring, cryptographic operations, and QR code generation.

Model Context Protocol

The Model Context Protocol (MCP) enables communication between:

  • Clients: Claude Desktop, IDEs, and other MCP-compatible clients
  • Servers: Tools and resources for task management and automation
  • LLM Agents: AI models that leverage the server's capabilities

Table of Contents

Features

Network & Geolocation

  • IP geolocation with intelligent caching
  • Network connectivity testing
  • Ping and traceroute utilities
  • Public IP detection
  • Rate limiting (45 requests/minute)

System Utilities

  • System information retrieval
  • Resource monitoring
  • Load average tracking
  • Network interface details

Security Tools

  • Cryptographic hash generation (MD5, SHA-1, SHA-256, SHA-512)
  • Constant-time hash comparison
  • UUID generation

Generator Tools

  • QR code generation
    • Terminal output
    • SVG format
    • Base64 encoded images

Installation

# Using npm (recommended)
npm install @cyanheads/toolkit-mcp-server

# Or install from source
git clone git@github.com:cyanheads/toolkit-mcp-server.git
cd toolkit-mcp-server
npm install
npm run build

Configuration

Add to your MCP client settings:

{
  "mcpServers": {
    "toolkit": {
      "command": "node",
      "args": ["node_modules/@cyanheads/toolkit-mcp-server/build/index.js"],
      "env": {
        "NODE_ENV": "production"
      }
    }
  }
}

Tools

Network Operations

// Get geolocation data
const geo = await mcp.use('toolkit-mcp-server', 'geolocate', {
  query: '8.8.8.8'
});

// Check connectivity
const conn = await mcp.use('toolkit-mcp-server', 'checkConnectivity', {
  host: 'example.com',
  port: 443
});

System Operations

// Get system information
const sysInfo = await mcp.use('toolkit-mcp-server', 'getSystemInfo', {});

// Get load average
const load = await mcp.use('toolkit-mcp-server', 'getLoadAverage', {});

Security Operations

// Generate hash
const hash = await mcp.use('toolkit-mcp-server', 'hashData', {
  input: 'test data',
  algorithm: 'sha256'
});

// Generate UUID
const uuid = await mcp.use('toolkit-mcp-server', 'generateUUID', {});

Generator Operations

// Generate QR code
const qr = await mcp.use('toolkit-mcp-server', 'generateQRCode', {
  data: 'https://example.com',
  type: 'svg'
});

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

Apache License 2.0. See LICENSE for more information.


README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Toolkit MCP Server

How do I install Toolkit MCP Server?

Run npx toolkit-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Toolkit MCP Server safe to use with an AI agent?

Its trust score is 61 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Toolkit MCP Server still maintained?

Yes — the latest release is v2.2.2 (22 Aug 2026), and the last commit was 9 months ago. The repository has 18 stars and 0 open issues.