Mcp Helper Tools

by MissionSquad

376 downloads
Not rated
GitHub

About

Fork of @cyanheads toolkit MCP server. Added encoding functions, removed system network functions.

Details

Author
MissionSquad
Downloads
376
Categories
Other

- Base64, URL, and HTML encoding/decoding
- IP geolocation with intelligent caching and rate limiting (45 requests/minute)
- Cryptographic hash generation (MD5, SHA-1, SHA-256, SHA-512)
- UUID generation
- QR code generation in terminal, SVG, and Base64 formats
- System information retrieval and load average monitoring

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Mcp Helper Tools
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install the package via npm (npm install @cyanheads/toolkit-mcp-server), then add the server configuration to your MCP client settings under the mcpServers key with the command node and the path to the built index.js file. Once configured, invoke tools by calling mcp.use('toolkit-mcp-server', 'toolName', params).

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

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

McpServers

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

Tools

Network Operations

\\\typescript // 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

\\\typescript // 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

\\\typescript // 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

\\\typescript // Generate QR code const qr = await mcp.use('toolkit-mcp-server', 'generateQRCode', { data: 'https://example.com', type: 'svg' }); \\\
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.