🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

devkits-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devkits-mcp-server

MCP Server for DevKits — 110+ developer tools for AI assistants

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
20
5.26%
Maintainers
1
Weekly downloads
 
Created
Source

@devkits/mcp-server

12 developer tools for AI assistants — powered by DevKits

An MCP (Model Context Protocol) server that exposes DevKits developer utilities directly inside Claude Desktop, Cursor, Continue, and any other MCP-compatible AI tool. All tools run locally with no external API calls.

Installation

Option A — npx (no install)

npx @devkits/mcp-server

Option B — global install

npm install -g @devkits/mcp-server

Claude Desktop Configuration

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

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

Cursor Configuration

Add to .cursor/mcp.json in your project root, or to the global ~/.cursor/mcp.json:

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

Continue (VS Code) Configuration

Add to ~/.continue/config.json:

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "npx",
          "args": ["@devkits/mcp-server"]
        }
      }
    ]
  }
}

Available Tools

ToolDescriptionParameters
devkits_json_formatFormat & validate JSONjson, indent?
devkits_base64_encodeEncode text to Base64text
devkits_base64_decodeDecode Base64 to textencoded
devkits_jwt_decodeDecode JWT header & payloadtoken
devkits_regex_testTest regex against inputpattern, text, flags?
devkits_url_encodeURL-encode a stringurl
devkits_url_decodeURL-decode a stringencoded
devkits_hash_generateGenerate SHA/MD5 hashtext, algorithm?
devkits_uuid_generateGenerate UUID v4count?
devkits_markdown_to_htmlConvert Markdown to HTMLmarkdown
devkits_diff_compareLine-by-line text difftext1, text2
devkits_cron_parseParse & explain cron expressionexpression

Examples

Format JSON:

Use devkits_json_format to pretty-print {"name":"Alice","age":30}

Decode a JWT:

Decode this JWT with devkits_jwt_decode: eyJhbGciOiJIUzI1NiJ9...

Generate hashes:

Hash the string "hello world" with sha256 using devkits_hash_generate

Parse a cron expression:

Explain the cron expression "0 9 * * 1-5" using devkits_cron_parse

Build from Source

git clone https://github.com/nicekid1/devkits-mcp
cd devkits-mcp
npm install
npm run build
npm start

License

MIT — built with love by DevKits

Keywords

mcp

FAQs

Package last updated on 26 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts