Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

io.github.kimbobmarley03/devpick

NPM · @DEVPICK/MCP-SERVER · SCANNED SEP 20

43 local developer tools for AI agents: PDF, subnet, regex, JSON, conversion, and more.

Available components

70 Trust /100
Trust breakdown (7 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score → Why this is hard to score →

Supply Chain Security98
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 34 of 101 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency48
  • Source repository is publicly reachable at the declared URL. View diagnostics → Pass
  • Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
  • Clear OSI-approved license (MIT).Pass
  • Actively maintained (last published 204 days ago).Pass
  • Publishes a security disclosure policy (SECURITY.md).Pass
Schema Quality & AI Usability80
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 2404 tokens (~55/item across 43 items; 43 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Tool Safety75
  • No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
  • 0 of 2 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "merge_pdfs" implies "merge" and declares no destructiveHint at all, which the MCP spec reads as destructive by default. See how to fix → Fail
  • An AI judge read all 43 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

How do I install the io.github.kimbobmarley03/devpick MCP server?

io.github.kimbobmarley03/devpick runs locally as an npm package, launched with npx -y @devpick/mcp-server. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

npm · @devpick/mcp-server

# add to Claude Code
claude mcp add kimbobmarley03-devpick -- npx -y @devpick/mcp-server
// .cursor/mcp.json
{
  "mcpServers": {
    "kimbobmarley03-devpick": {
      "command": "npx",
      "args": [
        "-y",
        "@devpick/mcp-server"
      ]
    }
  }
}
// .vscode/mcp.json
{
  "servers": {
    "kimbobmarley03-devpick": {
      "command": "npx",
      "args": [
        "-y",
        "@devpick/mcp-server"
      ]
    }
  }
}
# add to Codex CLI
codex mcp add kimbobmarley03-devpick -- npx -y @devpick/mcp-server
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "kimbobmarley03-devpick": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@devpick/mcp-server"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add kimbobmarley03-devpick --command npx --arg -y --arg @devpick/mcp-server
# ~/.hermes/config.yaml
mcp_servers:
  kimbobmarley03-devpick:
    command: "npx"
    args: ["-y", "@devpick/mcp-server"]
// ~/.netclaw/config/netclaw.json
{
  "McpServers": {
    "kimbobmarley03-devpick": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "@devpick/mcp-server"
      ]
    }
  }
}
# add to Vellum
assistant mcp add kimbobmarley03-devpick -t stdio -c npx -a -y @devpick/mcp-server
// mcp.json
{
  "mcpServers": {
    "kimbobmarley03-devpick": {
      "command": "npx",
      "args": [
        "-y",
        "@devpick/mcp-server"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 15 Sept 26 +15
    • Malware scan: unverified → pass security
  • 14 Sept 26 55

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 20 Sept 2026 · Analysed npm/@devpick/mcp-server@1.0.1

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm

Background: How many MCP packages publish verified provenance →

Dependencies 101 packages
Packages resolved 101
Stale 34
Tree resolution Complete

Background: SBOMs and build attestations, explained →

MCP tools · 43 exposed · ~2,404 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →

Tool Tokens
calculate_chmod ~69

Calculate Unix file permissions — convert between numeric (755), symbolic (rwxr-xr-x), and explain each bit

NameTypeReqDescription
modestringyesPermission mode: octal (e.g. '755', '644') or symbolic (e.g. 'rwxr-xr-x')

No output schema declared.

No examples provided.

calculate_subnet ~81

Calculate subnet details from IP address and CIDR notation (network, broadcast, host range, mask, etc.)

NameTypeReqDescription
cidrstringyesIP address with CIDR notation (e.g. '192.168.1.0/24') or just IP
prefixnumberCIDR prefix length if not included in cidr parameter

No output schema declared.

No examples provided.

count_words ~32

Count words, characters, lines, sentences, and paragraphs in text

NameTypeReqDescription
textstringyesText to analyze

No output schema declared.

No examples provided.

csv_to_json ~51

Convert CSV data to JSON array

NameTypeReqDescription
csvstringyesCSV string with header row
delimiterstringColumn delimiter (default: comma)
indentnumberJSON indent spaces

No output schema declared.

No examples provided.

decode_base64 ~31

Decode a Base64 string back to text

NameTypeReqDescription
inputstringyesBase64 encoded string to decode

No output schema declared.

No examples provided.

decode_html_entities ~30

Decode HTML entities back to their original characters

NameTypeReqDescription
inputstringyesHTML with entities to decode

No output schema declared.

No examples provided.

decode_url ~59

Decode a URL-encoded (percent-encoded) string

NameTypeReqDescription
fullbooleanIf true, decode a full URL (use decodeURI); otherwise decode a component (decodeURIComponent)
inputstringyesURL-encoded string to decode

No output schema declared.

No examples provided.

encode_base64 ~30

Encode text or data to Base64

NameTypeReqDescription
inputstringyesText to encode to Base64

No output schema declared.

No examples provided.

encode_html_entities ~39

Encode special characters to HTML entities (&, <, >, etc.)

NameTypeReqDescription
inputstringyesText to encode HTML entities in

No output schema declared.

No examples provided.

encode_url ~61

URL-encode (percent-encode) a string for use in URLs

NameTypeReqDescription
fullbooleanIf true, encode the full URL (use encodeURI); otherwise encode a component (encodeURIComponent)
inputstringyesString to URL-encode

No output schema declared.

No examples provided.

escape_string ~53

Escape special characters in a string (newlines, tabs, quotes, backslashes)

NameTypeReqDescription
inputstringyesString to escape
modestringEscape mode: json, js, regex, or shell

No output schema declared.

No examples provided.

format_css ~60

Format and prettify CSS stylesheets with proper indentation

NameTypeReqDescription
cssstringyesCSS string to format
indentnumberIndent spaces (default 2)
minifybooleanIf true, minify instead of format

No output schema declared.

No examples provided.

format_html ~59

Format and prettify HTML markup with proper indentation

NameTypeReqDescription
htmlstringyesHTML string to format
indentnumberIndent spaces (default 2)
minifybooleanIf true, minify instead of format

No output schema declared.

No examples provided.

format_json ~60

Format, prettify, or minify JSON data

NameTypeReqDescription
indentnumberIndent spaces (default 2)
jsonstringyesRaw JSON string
minifybooleanIf true, minify instead of prettify

No output schema declared.

No examples provided.

format_sql ~48

Format and prettify SQL queries with keyword capitalization and proper indentation

NameTypeReqDescription
minifybooleanIf true, minify instead of format
sqlstringyesSQL query to format

No output schema declared.

No examples provided.

format_xml ~59

Format and prettify XML data with proper indentation

NameTypeReqDescription
indentnumberIndent spaces (default 2)
minifybooleanIf true, minify instead of format
xmlstringyesXML string to format

No output schema declared.

No examples provided.

generate_cron_expression ~163

Generate a cron expression from common schedule descriptions or explicit fields

NameTypeReqDescription
day_of_monthstringDay of month field (1-31, *, */n)
day_of_weekstringDay of week field (0-7, *, 0=Sunday, MON-SUN)
hourstringHour field (0-23, *, */n, or comma-separated)
minutestringMinute field (0-59, *, */n, or comma-separated)
monthstringMonth field (1-12, *, */n, or JAN-DEC)
presetstringCommon schedule description (e.g. 'every 5 minutes', 'every day at midnight', 'every weekday')

No output schema declared.

No examples provided.

generate_hash ~59

Generate cryptographic hash of input text (MD5, SHA-1, SHA-256, SHA-512)

NameTypeReqDescription
algorithmstringHash algorithm
encodingstringOutput encoding
inputstringyesText to hash

No output schema declared.

No examples provided.

generate_lorem_ipsum ~55

Generate Lorem Ipsum placeholder text

NameTypeReqDescription
classicbooleanStart with the classic 'Lorem ipsum' opening
countnumberNumber of units to generate
unitstringUnit of generation

No output schema declared.

No examples provided.

generate_slug ~64

Generate a URL-safe slug from text

NameTypeReqDescription
lowercasebooleanConvert to lowercase
max_lengthnumberMaximum slug length
separatorstringWord separator (default: hyphen)
textstringyesText to convert to a slug

No output schema declared.

No examples provided.

generate_uuid ~49

Generate one or more random UUID v4 identifiers

NameTypeReqDescription
countnumberNumber of UUIDs to generate (1-100)
uppercasebooleanIf true, return uppercase UUIDs

No output schema declared.

No examples provided.

hex_to_rgb ~52

Convert a hex color code to RGB (and HSL) values

NameTypeReqDescription
hexstringyesHex color code (e.g. '#FF5733' or 'FF5733' or '#F53')

No output schema declared.

No examples provided.

json_diff ~54

Compare two JSON objects and show a structured diff of all changes (added, removed, changed keys)

NameTypeReqDescription
leftstringyesFirst (original) JSON string
rightstringyesSecond (modified) JSON string

No output schema declared.

No examples provided.

json_to_csv ~45

Convert a JSON array to CSV format

NameTypeReqDescription
delimiterstringColumn delimiter (default: comma)
jsonstringyesJSON array (or object) to convert

No output schema declared.

No examples provided.

json_to_typescript ~50

Generate TypeScript interfaces/types from a JSON object or array

NameTypeReqDescription
jsonstringyesJSON string to convert
root_namestringName for the root interface (default: Root)

No output schema declared.

No examples provided.

json_to_yaml ~25

Convert JSON to YAML

NameTypeReqDescription
jsonstringyesJSON string to convert

No output schema declared.

No examples provided.

markdown_to_html ~26

Convert Markdown text to HTML

NameTypeReqDescription
markdownstringyesMarkdown text to convert

No output schema declared.

No examples provided.

merge_pdfs ~53

Merge multiple PDF files into a single PDF. Provide absolute file paths.

NameTypeReqDescription
filesarrayyesArray of absolute paths to PDF files to merge
outputstringyesAbsolute path for the merged output PDF

No output schema declared.

No examples provided.

number_base_convert ~97

Convert a number between bases (binary, octal, decimal, hex, or any base 2-36)

NameTypeReqDescription
from_basenumberyesSource base (e.g. 10 for decimal, 16 for hex, 2 for binary)
to_basenumberyesTarget base
valuestringyesNumber to convert (as string, e.g. '255', 'FF', '11111111')

No output schema declared.

No examples provided.

parse_cron ~39

Parse and describe a cron expression in human-readable language

NameTypeReqDescription
expressionstringyesCron expression with 5 fields (minute hour day month weekday)

No output schema declared.

No examples provided.

parse_jwt ~37

Decode and inspect a JWT token (header, payload, expiry — does NOT verify signature)

NameTypeReqDescription
tokenstringyesJWT token string

No output schema declared.

No examples provided.

pdf_info ~44

Get metadata and page info from a PDF file (page count, title, author, file size, page dimensions).

NameTypeReqDescription
inputstringyesAbsolute path to the PDF file

No output schema declared.

No examples provided.

pdf_watermark ~90

Add a text watermark to every page of a PDF.

NameTypeReqDescription
fontSizenumberFont size (default 50)
inputstringyesAbsolute path to the input PDF
opacitynumberWatermark opacity (0-1, default 0.3)
outputstringyesAbsolute path for the output PDF
textstringyesWatermark text

No output schema declared.

No examples provided.

remove_pdf_pages ~64

Remove specific pages from a PDF. Pages are 1-indexed.

NameTypeReqDescription
inputstringyesAbsolute path to the input PDF
outputstringyesAbsolute path for the output PDF
pagesarrayyesPage numbers to remove (1-indexed)

No output schema declared.

No examples provided.

rgb_to_hex ~58

Convert RGB color values to a hex color code

NameTypeReqDescription
bnumberyesBlue channel (0-255)
gnumberyesGreen channel (0-255)
rnumberyesRed channel (0-255)

No output schema declared.

No examples provided.

rotate_pdf ~99

Rotate pages in a PDF by 90, 180, or 270 degrees. Rotates all pages or specific pages.

NameTypeReqDescription
anglestringyesRotation angle: 90, 180, or 270
inputstringyesAbsolute path to the input PDF
outputstringyesAbsolute path for the output PDF
pagesarraySpecific pages to rotate (1-indexed). Omit to rotate all.

No output schema declared.

No examples provided.

split_pdf ~67

Extract specific pages from a PDF into a new file. Pages are 1-indexed.

NameTypeReqDescription
inputstringyesAbsolute path to the input PDF
outputstringyesAbsolute path for the output PDF
pagesarrayyesPage numbers to extract (1-indexed)

No output schema declared.

No examples provided.

test_regex ~72

Test a regular expression pattern against text and return all matches with details

NameTypeReqDescription
flagsstringRegex flags (g, i, m, s, u — default: g)
patternstringyesRegular expression pattern (without delimiters)
textstringyesText to test the pattern against

No output schema declared.

No examples provided.

text_diff ~70

Compare two text strings line-by-line and show added, removed, and unchanged lines

NameTypeReqDescription
text1stringyesFirst (original) text
text2stringyesSecond (modified) text
unifiedbooleanIf true, return unified diff format; otherwise return structured diff

No output schema declared.

No examples provided.

unescape_string ~56

Unescape escape sequences in a string (\n, \t, \\, \", etc.)

NameTypeReqDescription
inputstringyesString with escape sequences to unescape
modestringUnescape mode: json or unicode

No output schema declared.

No examples provided.

validate_toml ~32

Validate TOML and report any syntax errors

NameTypeReqDescription
tomlstringyesTOML string to validate

No output schema declared.

No examples provided.

validate_yaml ~27

Validate YAML and report any syntax errors

NameTypeReqDescription
yamlstringyesYAML string to validate

No output schema declared.

No examples provided.

yaml_to_json ~35

Convert YAML to JSON

NameTypeReqDescription
indentnumberJSON indent spaces
yamlstringyesYAML string to convert

No output schema declared.

No examples provided.

Common questions

What is the io.github.kimbobmarley03/devpick MCP server?

io.github.kimbobmarley03/devpick is an MCP server listed in the public MCP registry as io.github.kimbobmarley03/devpick. 43 local developer tools for AI agents: PDF, subnet, regex, JSON, conversion, and more. This page covers its npm package (@devpick/mcp-server).

Is the io.github.kimbobmarley03/devpick MCP server safe to use?

io.github.kimbobmarley03/devpick scores 70 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

What tools does the io.github.kimbobmarley03/devpick MCP server expose?

io.github.kimbobmarley03/devpick exposes 43 tools: merge_pdfs, split_pdf, pdf_info, rotate_pdf, pdf_watermark, and 38 more. Their descriptions and schemas cost roughly 2,404 tokens of context every time the server is loaded.

Is the io.github.kimbobmarley03/devpick MCP server still maintained?

io.github.kimbobmarley03/devpick is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

What licence is the io.github.kimbobmarley03/devpick MCP server under?

io.github.kimbobmarley03/devpick declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.