revxl-devtools 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -0
- package/docs/devto-launch-article.md +204 -0
- package/package.json +16 -2
package/dist/index.js
CHANGED
|
File without changes
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: I Built 17 MCP Dev Tools That Actually Do What Your AI Can't
|
|
3
|
+
published: true
|
|
4
|
+
description: Secrets scanning, regex-to-code in 5 languages, cron from plain English, batch ops on 500 items. 17 tools, zero bloat.
|
|
5
|
+
tags: mcp, ai, developer-tools, productivity
|
|
6
|
+
cover_image:
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
Your AI agent can generate a UUID. It can decode base64 in its head. It can even write a regex pattern if you ask nicely.
|
|
10
|
+
|
|
11
|
+
So why would you install an MCP dev tools server?
|
|
12
|
+
|
|
13
|
+
Because there's a category of developer tasks that agents *think* they can do but actually butcher every time:
|
|
14
|
+
|
|
15
|
+
- **Scanning for leaked secrets** across a codebase (agents miss patterns, hallucinate matches)
|
|
16
|
+
- **Generating production regex code** in Python, Go, Rust, Java, and JS from a single pattern
|
|
17
|
+
- **Batch-processing 500 items** in one call instead of 500 round-trips
|
|
18
|
+
- **Deep-diffing JSON objects** with exact path-level changes, not a vague "these look different"
|
|
19
|
+
|
|
20
|
+
I built `revxl-devtools` to give agents these capabilities as proper tools with structured output. 17 tools total. No bloat.
|
|
21
|
+
|
|
22
|
+
## Install in 30 seconds
|
|
23
|
+
|
|
24
|
+
Add this to your Claude Desktop, Cursor, Windsurf, or VS Code MCP config:
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
{
|
|
28
|
+
"mcpServers": {
|
|
29
|
+
"devtools": {
|
|
30
|
+
"command": "npx",
|
|
31
|
+
"args": ["-y", "revxl-devtools"]
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
That's it. 7 free tools work immediately, unlimited. 10 Pro tools come with 3 free trials each.
|
|
38
|
+
|
|
39
|
+
## The 3 Tools That Actually Matter
|
|
40
|
+
|
|
41
|
+
Most MCP dev tool servers give you 40+ tools that duplicate what your agent already does natively. Here are three that don't exist anywhere else.
|
|
42
|
+
|
|
43
|
+
### 1. secrets_scan -- Find leaked keys before they cost you $50K
|
|
44
|
+
|
|
45
|
+
Paste any text, config file, or code block and `secrets_scan` catches what grep won't:
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
> secrets_scan("Check this config:
|
|
49
|
+
AWS_ACCESS_KEY_ID=AKIAIOSFODNN7EXAMPLE
|
|
50
|
+
password = hunter2
|
|
51
|
+
ANTHROPIC_API_KEY=sk-ant-api03-abc123...")
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
```json
|
|
55
|
+
{
|
|
56
|
+
"findings": [
|
|
57
|
+
{
|
|
58
|
+
"type": "AWS Access Key",
|
|
59
|
+
"value": "AKIAIOSFODNN7EXAMPLE",
|
|
60
|
+
"severity": "critical",
|
|
61
|
+
"line": 2,
|
|
62
|
+
"recommendation": "Rotate immediately in AWS IAM console"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"type": "Anthropic API Key",
|
|
66
|
+
"value": "sk-ant-api03-abc123...",
|
|
67
|
+
"severity": "critical",
|
|
68
|
+
"line": 4,
|
|
69
|
+
"recommendation": "Revoke at console.anthropic.com/settings/keys"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"summary": "2 critical secrets found"
|
|
73
|
+
}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
It catches AWS keys, GitHub tokens, Stripe keys, OpenAI keys, Anthropic keys, and more. Your agent can run this on files before you commit them. Think of it as a lightweight `trufflehog` that lives inside your AI workflow.
|
|
77
|
+
|
|
78
|
+
### 2. regex -- Pattern testing + code generation in 5 languages
|
|
79
|
+
|
|
80
|
+
Every developer has done this dance: ask the AI for a regex, test it manually, realize it doesn't work in Go because Go's regex engine doesn't support lookbehinds, rewrite it.
|
|
81
|
+
|
|
82
|
+
`regex` solves this in one call:
|
|
83
|
+
|
|
84
|
+
```
|
|
85
|
+
> regex(pattern: "^[\\w.+-]+@[\\w-]+\\.[\\w.]+$",
|
|
86
|
+
test_string: "user@example.com\nbad@@email\ntest.user+tag@company.co.uk",
|
|
87
|
+
generate_code: true)
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
```json
|
|
91
|
+
{
|
|
92
|
+
"matches": [
|
|
93
|
+
{ "match": "user@example.com", "index": 0 },
|
|
94
|
+
{ "match": "test.user+tag@company.co.uk", "index": 2 }
|
|
95
|
+
],
|
|
96
|
+
"code": {
|
|
97
|
+
"python": "import re\npattern = re.compile(r'^[\\w.+-]+@[\\w-]+\\.[\\w.]+$')\nmatches = pattern.findall(text)",
|
|
98
|
+
"javascript": "const pattern = /^[\\w.+-]+@[\\w-]+\\.[\\w.]+$/gm;\nconst matches = text.match(pattern);",
|
|
99
|
+
"go": "re := regexp.MustCompile(`^[\\w.+-]+@[\\w-]+\\.[\\w.]+$`)\nmatches := re.FindAllString(text, -1)",
|
|
100
|
+
"rust": "let re = Regex::new(r\"^[\\w.+-]+@[\\w-]+\\.[\\w.]+$\").unwrap();\nlet matches: Vec<&str> = re.find_iter(&text).map(|m| m.as_str()).collect();",
|
|
101
|
+
"java": "Pattern pattern = Pattern.compile(\"^[\\\\w.+-]+@[\\\\w-]+\\\\.[\\\\w.]+$\");\nMatcher matcher = pattern.matcher(text);"
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
Test and generate in one shot. Your agent gets copy-paste-ready code for whichever language your project uses.
|
|
107
|
+
|
|
108
|
+
### 3. cron -- From plain English to production config
|
|
109
|
+
|
|
110
|
+
Stop Googling crontab syntax. Just describe what you want:
|
|
111
|
+
|
|
112
|
+
```
|
|
113
|
+
> cron(natural_language: "every weekday at 9am EST")
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
```json
|
|
117
|
+
{
|
|
118
|
+
"expression": "0 9 * * 1-5",
|
|
119
|
+
"description": "At 09:00, Monday through Friday",
|
|
120
|
+
"next_runs": [
|
|
121
|
+
"2026-03-26 09:00 (Thu)",
|
|
122
|
+
"2026-03-27 09:00 (Fri)",
|
|
123
|
+
"2026-03-30 09:00 (Mon)"
|
|
124
|
+
],
|
|
125
|
+
"code": {
|
|
126
|
+
"crontab": "0 9 * * 1-5 /path/to/script.sh",
|
|
127
|
+
"systemd": "[Timer]\nOnCalendar=Mon..Fri *-*-* 09:00:00",
|
|
128
|
+
"node_cron": "cron.schedule('0 9 * * 1-5', () => { /* ... */ })"
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
Crontab, systemd timer, and node-cron output -- all from one English sentence. You can also pass an existing cron expression to get a human-readable explanation and the next 5 run times.
|
|
134
|
+
|
|
135
|
+
## Comparison: revxl-devtools vs mcp-devutils
|
|
136
|
+
|
|
137
|
+
| | mcp-devutils | revxl-devtools |
|
|
138
|
+
|---|---|---|
|
|
139
|
+
| **Price** | $5 one-time | $7 one-time |
|
|
140
|
+
| **Total tools** | 44 | 17 |
|
|
141
|
+
| **Free tools** | 15 | 7 (unlimited) |
|
|
142
|
+
| **Regex to code gen** | No | Yes (5 languages) |
|
|
143
|
+
| **Batch operations** | No | Yes (500 items/call) |
|
|
144
|
+
| **Secrets scanner** | No | Yes |
|
|
145
|
+
| **Cron from English** | No | Yes |
|
|
146
|
+
| **JSON deep diff** | Pro only | Pro with path-level detail |
|
|
147
|
+
| **Context tokens used** | ~44 tool definitions | ~17 tool definitions |
|
|
148
|
+
|
|
149
|
+
That last row matters more than you think. Every MCP tool definition eats context tokens. 44 tool defs means your agent has less room for your actual conversation. 17 tools means less waste and faster responses.
|
|
150
|
+
|
|
151
|
+
Fewer tools that do more > more tools that duplicate your agent's native abilities.
|
|
152
|
+
|
|
153
|
+
## Full Tool List
|
|
154
|
+
|
|
155
|
+
**Free (unlimited):**
|
|
156
|
+
`json_format` | `base64` | `url_encode` | `uuid_generate` | `hash_text` | `timestamp` | `http_status`
|
|
157
|
+
|
|
158
|
+
**Pro ($7 one-time, 3 free trials each):**
|
|
159
|
+
`jwt` | `regex` | `cron` | `json_diff` | `json_query` | `batch` | `sql_format` | `yaml_convert` | `chmod` | `secrets_scan`
|
|
160
|
+
|
|
161
|
+
## Setup
|
|
162
|
+
|
|
163
|
+
**Basic (free tools only):**
|
|
164
|
+
|
|
165
|
+
```json
|
|
166
|
+
{
|
|
167
|
+
"mcpServers": {
|
|
168
|
+
"devtools": {
|
|
169
|
+
"command": "npx",
|
|
170
|
+
"args": ["-y", "revxl-devtools"]
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
**With Pro license:**
|
|
177
|
+
|
|
178
|
+
```json
|
|
179
|
+
{
|
|
180
|
+
"mcpServers": {
|
|
181
|
+
"devtools": {
|
|
182
|
+
"command": "npx",
|
|
183
|
+
"args": ["-y", "revxl-devtools"],
|
|
184
|
+
"env": {
|
|
185
|
+
"REVXL_PRO_KEY": "REVXL-XXXX-XXXX-XXXX"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
Works with Claude Desktop, Cursor, Windsurf, and VS Code. Any MCP-compatible client.
|
|
193
|
+
|
|
194
|
+
## Try It
|
|
195
|
+
|
|
196
|
+
Every Pro tool gives you 3 free trials. No credit card, no sign-up. Just install and use it.
|
|
197
|
+
|
|
198
|
+
If the tools save you time (they will), Pro is a one-time $7 at [revxl-devtools.vercel.app](https://revxl-devtools.vercel.app).
|
|
199
|
+
|
|
200
|
+
`npx -y revxl-devtools` -- that's the whole install.
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
204
|
+
*Built by [RevXL](https://revxl.net). Questions or feature requests? Open an issue on the repo or reach out at john@revxl.net.*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "revxl-devtools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "17 developer tools for AI agents. JSON, JWT, regex, cron, secrets scanner. Free core + Pro ($7).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -12,9 +12,23 @@
|
|
|
12
12
|
"start": "node dist/index.js",
|
|
13
13
|
"dev": "tsx src/index.ts"
|
|
14
14
|
},
|
|
15
|
-
"keywords": [
|
|
15
|
+
"keywords": [
|
|
16
|
+
"mcp",
|
|
17
|
+
"developer-tools",
|
|
18
|
+
"json",
|
|
19
|
+
"jwt",
|
|
20
|
+
"regex",
|
|
21
|
+
"claude",
|
|
22
|
+
"cursor",
|
|
23
|
+
"ai-tools",
|
|
24
|
+
"mcp-server"
|
|
25
|
+
],
|
|
16
26
|
"author": "RevXL <john@revxl.net>",
|
|
17
27
|
"license": "MIT",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/johnmives/revxl-devtools.git"
|
|
31
|
+
},
|
|
18
32
|
"dependencies": {
|
|
19
33
|
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
20
34
|
},
|