# net.programmes/developer-tools (remote · programmes.net)

65+ free in-browser developer tools (JSON, Base64, JWT, hash, regex…) callable over MCP.

- Trust score: 70/100 (medium)
- Change this week: +4
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `programmes.net`: 70/100 (this document), [markdown](https://verifymcp.io/servers/net-programmes-developer-tools/programmes.md), [page](https://verifymcp.io/servers/net-programmes-developer-tools/programmes)

## Channel facts

- Endpoint: `https://programmes.net/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.1`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 66/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 59 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 75/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 6465 tokens (~109/item across 59 items; 59 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http net-programmes-developer-tools https://programmes.net/mcp
```

### Codex

```toml
[mcp_servers.net-programmes-developer-tools]
url = "https://programmes.net/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "net-programmes-developer-tools": {
      "type": "remote",
      "url": "https://programmes.net/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add net-programmes-developer-tools --url https://programmes.net/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  net-programmes-developer-tools:
    url: "https://programmes.net/mcp"
```

### Other

```json
{
  "mcpServers": {
    "net-programmes-developer-tools": {
      "type": "http",
      "url": "https://programmes.net/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 70, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 69, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 68, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 67, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 66, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 65)

First indexed and scored.

## MCP tools (59)

### `json` (~146 tokens)

Format, minify, validate and convert JSON.. Operations: "format" — Pretty-print JSON with a configurable indent.; "minify" — Strip all insignificant whitespace from JSON.; "validate" — Check whether the input is valid JSON, reporting the error location.; "repair" — Best-effort repair of common JSON mistakes (trailing commas, single quotes, unquoted keys).. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/json).

### `base64` (~122 tokens)

Encode and decode text in Base64, Base64URL, Base32, Base58, Base85 and hex.. Operations: "encode" — Encode text into the chosen format.; "decode" — Decode text from the chosen format back to plain text.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/base64).

### `url` (~126 tokens)

Parse, validate and normalize URLs.. Operations: "parse" — Break a URL into its component parts.; "validate" — Validate a URL and run basic security/heuristic checks.; "normalize" — Normalize a URL (drop default ports, sort query params, strip trailing slash).. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/url).

### `url-encode` (~104 tokens)

Percent-encode and decode URL strings.. Operations: "encode" — Percent-encode a string.; "decode" — Decode a percent-encoded string.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/url-encode).

### `jwt` (~97 tokens)

Decode JWT header and payload (no signature verification).. Operations: "decode" — Decode a JWT into its header, payload and signature.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/jwt).

### `html-entity` (~109 tokens)

Encode and decode HTML entities (named, decimal, hex).. Operations: "encode" — Encode text into HTML entities.; "decode" — Decode HTML entities back to plain text.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/html-entity).

### `hash` (~119 tokens)

Compute MD5, SHA-1/256/384/512, CRC32 and HMAC digests.. Operations: "hash" — Hash text with the chosen algorithm.; "hmac" — Compute an HMAC digest (SHA algorithms only).. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/hash).

### `uuid` (~133 tokens)

Generate and inspect UUIDs.. Operations: "v4" — Generate one or more random (v4) UUIDs.; "v3" — Generate a name-based (v3 / MD5) UUID.; "parse" — Parse a UUID and report its version, variant and (where present) timestamp.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/uuid).

### `password` (~105 tokens)

Generate strong random passwords and estimate their strength.. Operations: "generate" — Generate a cryptographically random password.; "strength" — Estimate the entropy and strength bucket of a password.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/password).

### `random` (~92 tokens)

Generate cryptographically secure random strings.. Operations: "generate" — Generate a secure random string from a chosen pattern.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/random).

### `case` (~111 tokens)

Convert text between camelCase, snake_case, kebab-case and more.. Operations: "convert" — Convert text to a single chosen case.; "all" — Return every supported case transform at once.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/case).

### `slugify` (~97 tokens)

Turn arbitrary text into a clean, URL-safe slug.. Operations: "slugify" — Generate a URL slug from text.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/slugify).

### `yaml-json` (~103 tokens)

Convert between YAML and JSON.. Operations: "yaml-to-json" — Convert YAML to JSON.; "json-to-yaml" — Convert JSON to YAML.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/yaml-json).

### `json-ts` (~95 tokens)

Generate TypeScript type declarations from a JSON sample.. Operations: "generate" — Infer TypeScript interfaces/types from JSON.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/json-ts).

### `json-csv` (~109 tokens)

Convert between JSON and CSV.. Operations: "json-to-csv" — Convert a JSON array/object to CSV.; "csv-to-json" — Convert CSV to a JSON array.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/json-csv).

### `color` (~114 tokens)

Convert colors between HEX, RGB, HSL, HSV and CMYK.. Operations: "convert" — Convert a HEX color to every supported color space.; "palette" — Generate a color harmony palette from a base color.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/color).

### `number-base` (~101 tokens)

Convert numbers between binary, octal, decimal and hex.. Operations: "convert" — Convert a number from one base to all supported bases.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/number-base).

### `chmod` (~137 tokens)

Convert between octal and symbolic Unix file permissions.. Operations: "octal-to-symbolic" — Convert octal permissions (e.g. "755") to a symbolic string and description.; "symbolic-to-octal" — Convert a symbolic permission string (e.g. "rwxr-xr-x") to octal.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/chmod).

### `http-status` (~108 tokens)

Look up and search HTTP status codes.. Operations: "lookup" — Look up a single status code by number.; "search" — Search status codes by number, name or description.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/http-status).

### `css-minify` (~114 tokens)

Minify or beautify CSS.. Operations: "minify" — Minify CSS (strip comments and whitespace).; "beautify" — Beautify CSS (one declaration per line, indented).. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/css-minify).

### `curl-converter` (~101 tokens)

Convert a curl command into fetch / Python / Node snippets.. Operations: "convert" — Parse a curl command and generate code snippets.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/curl-converter).

### `sql` (~104 tokens)

Format and minify SQL.. Operations: "beautify" — Beautify SQL with newlines before clauses.; "minify" — Minify SQL to a single line.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/sql).

### `xml` (~119 tokens)

Pretty-print or minify already-serialized XML, and highlight it.. Operations: "format" — Pretty-print XML with the chosen indent (server-safe string transform).; "minify" — Collapse whitespace between XML tags (server-safe string transform).. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/xml).

### `html` (~117 tokens)

Format, minify and validate HTML.. Operations: "format" — Pretty-print HTML.; "minify" — Minify HTML (strip comments and collapse whitespace).; "validate" — Check HTML for unclosed/mismatched tags.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/html).

### `markdown` (~124 tokens)

Render Markdown to HTML, build a TOC and compute statistics.. Operations: "render" — Render GitHub-flavored Markdown to sanitized HTML.; "toc" — Extract a table of contents from Markdown headers.; "stats" — Compute document statistics for Markdown/plain text.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/markdown).

### `timestamp` (~114 tokens)

Convert and inspect Unix timestamps and dates.. Operations: "to-date" — Convert a Unix timestamp (seconds) to a full date breakdown.; "parse-date" — Auto-detect and parse a date/timestamp string.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/timestamp).

### `cron` (~112 tokens)

Describe cron expressions and compute upcoming run times.. Operations: "describe" — Produce a human-readable description of a cron expression.; "next-runs" — Compute the next N run times for a cron expression.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/cron).

### `regex` (~109 tokens)

Test a regex against a string and apply replacements.. Operations: "test" — Find all matches of a regex pattern in a test string.; "replace" — Replace regex matches in a string.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/regex).

### `lorem` (~93 tokens)

Generate placeholder text in several styles.. Operations: "generate" — Generate lorem ipsum (or themed) placeholder text.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/lorem).

### `word-count` (~133 tokens)

Count words/characters and compute readability statistics.. Operations: "count" — Compute basic text statistics (words, characters, sentences, etc.).; "readability" — Compute readability scores (Flesch, SMOG, Coleman-Liau).; "keywords" — Compute keyword density for the text.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/word-count).

### `diff` (~111 tokens)

Compute a line-by-line diff between two texts.. Operations: "compare" — Diff two texts and return the lines plus statistics.; "unified" — Produce a unified-diff text between two inputs.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/diff).

### `bcrypt` (~106 tokens)

Hash and verify passwords with bcrypt.. Operations: "hash" — Hash a password with bcrypt at the given cost.; "verify" — Verify a plaintext password against a bcrypt hash.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/bcrypt).

### `wifi-qr` (~110 tokens)

Build the standard WIFI: payload string for a WiFi QR code.. Operations: "payload" — Build the WIFI: payload string a phone scans to auto-join a network.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/wifi-qr).

### `gitignore` (~112 tokens)

Generate a combined .gitignore from template keys.. Operations: "generate" — Combine one or more template keys into a .gitignore.; "templates" — List the available .gitignore template keys.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/gitignore).

### `contrast` (~120 tokens)

Check WCAG contrast between a foreground and background color.. Operations: "check" — Compute the contrast ratio and WCAG pass/fail for a color pair.; "best-text" — Pick black or white text for the best contrast on a background.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/contrast).

### `image-base64` (~106 tokens)

Build and parse base64 data URIs and embed snippets.. Operations: "build-snippets" — Build HTML/CSS/Markdown snippets from an existing data URI.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/image-base64).

### `json-schema` (~99 tokens)

Infer a draft-07 JSON Schema from sample JSON.. Operations: "generate" — Infer a draft-07 JSON Schema from sample JSON. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/json-schema).

### `cidr` (~107 tokens)

Parse a CIDR block into its network, broadcast and host range.. Operations: "calculate" — Calculate the network, broadcast, mask and host range for a CIDR block.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/cidr).

### `user-agent` (~106 tokens)

Parse a User-Agent string into browser, engine, OS and device.. Operations: "parse" — Parse a User-Agent string into browser, engine, OS and device details.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/user-agent).

### `color-palette` (~105 tokens)

Generate harmony, shade and tint palettes from a base HEX color.. Operations: "generate" — Generate harmony, shade and tint palettes from a base HEX color.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/color-palette).

### `password-strength` (~104 tokens)

Analyze a password and estimate its entropy, strength and crack time.. Operations: "analyze" — Analyze a password and estimate its entropy, strength and crack time.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/password-strength).

### `jsonpath` (~97 tokens)

Query a JSON document with a JSONPath expression.. Operations: "query" — Evaluate a JSONPath expression against a JSON document.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/jsonpath).

### `totp` (~106 tokens)

Generate a time-based one-time password (TOTP) from a base32 secret.. Operations: "generate" — Generate the current TOTP code for a base32 secret.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/totp).

### `data-size` (~107 tokens)

Parse a data size and convert it to bytes plus decimal and binary units.. Operations: "convert" — Parse a data size and convert it to bytes, decimal and binary units.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/data-size).

### `mime` (~96 tokens)

Look up MIME types by file extension or MIME type.. Operations: "lookup" — Search MIME types by extension or MIME type.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/mime).

### `sort-lines` (~101 tokens)

Sort, reverse, deduplicate and clean up lines of text.. Operations: "process" — Sort, deduplicate and clean lines of text.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/sort-lines).

### `jwt-encode` (~106 tokens)

Sign a JSON payload into a JWT with an HMAC secret.. Operations: "sign" — Sign a JSON payload into a JWT using an HMAC secret.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/jwt-encode).

### `ulid` (~93 tokens)

Generate a lexicographically sortable ULID.. Operations: "generate" — Generate a new ULID.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/ulid).

### `string-escape` (~117 tokens)

Escape and unescape strings for JSON, JS, HTML, URL and regex.. Operations: "escape" — Escape a string for the chosen context.; "unescape" — Unescape a string from the chosen context.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/string-escape).

### `ascii` (~108 tokens)

Convert text to and from character codes in several bases.. Operations: "to-codes" — Convert text to character codes.; "from-codes" — Convert character codes back to text.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/ascii).

### `roman-numeral` (~114 tokens)

Convert between integers and Roman numerals.. Operations: "to-roman" — Convert an integer to a Roman numeral.; "from-roman" — Convert a Roman numeral to an integer.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/roman-numeral).

### `aes-encrypt` (~117 tokens)

Encrypt and decrypt text with AES-GCM using a password.. Operations: "encrypt" — Encrypt plaintext into base64 ciphertext with a password.; "decrypt" — Decrypt base64 ciphertext produced by the encrypt operation.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/aes-encrypt).

### `json-diff` (~99 tokens)

Compare two JSON documents and report added, removed and changed values.. Operations: "diff" — Diff two JSON documents by path.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/json-diff).

### `morse-code` (~103 tokens)

Translate text to and from Morse code.. Operations: "encode" — Convert text to Morse code.; "decode" — Convert Morse code to text.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/morse-code).

### `markdown-table` (~97 tokens)

Convert CSV or TSV rows into a Markdown table.. Operations: "generate" — Build a Markdown table from delimited rows.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/markdown-table).

### `hmac` (~102 tokens)

Sign a message with HMAC using a secret key and SHA-2 algorithm.. Operations: "sign" — Compute an HMAC signature for a message.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/hmac).

### `css-units` (~110 tokens)

Convert a numeric value between CSS units (px, rem, em, pt, pc, %).. Operations: "convert" — Convert a numeric value from one CSS unit to another.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/css-units).

### `json-xml` (~102 tokens)

Convert between JSON and XML.. Operations: "to-xml" — Convert JSON to XML.; "to-json" — Convert XML to JSON.. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/json-xml).

### `char-inspector` (~103 tokens)

Break a string into per-character Unicode details.. Operations: "inspect" — Inspect each character of a string (code point, category, bytes).. Call with "operation" plus "input" (and "options" where relevant).

Input parameters:

- `input` (string, required): The primary input string.
- `operation` (string, required): The operation to run.
- `options` (object): Optional parameters for the operation (see the tool schema at /api/v1/char-inspector).

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/net-programmes-developer-tools/programmes#diagnostics

## Score history

- 2026-08-03: 70
- 2026-08-02: 70
- 2026-08-01: 69
- 2026-07-31: 69
- 2026-07-30: 68
- 2026-07-29: 67
- 2026-07-28: 67
- 2026-07-27: 66
- 2026-07-26: 65

## Links

- Remote endpoint: https://programmes.net/mcp
- Repository: https://github.com/setkernel/programmes-net
- Changelog RSS feed: https://verifymcp.io/servers/net-programmes-developer-tools/programmes/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/net-programmes-developer-tools/programmes/changelog.json
- HTML version of this page: https://verifymcp.io/servers/net-programmes-developer-tools/programmes
