mcp-all-tools 1.0.0
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/README.md +137 -0
- package/index.js +2259 -0
- package/package.json +67 -0
package/README.md
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# mcp-all-tools
|
|
2
|
+
|
|
3
|
+
**54+ developer tools in one MCP server.** Combines devutils, API, text, math, datetime, and calculator tools into a single package -- no need to install multiple servers.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx mcp-all-tools
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or install globally:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install -g mcp-all-tools
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Claude Desktop / MCP Config
|
|
18
|
+
|
|
19
|
+
Add to your `claude_desktop_config.json` or MCP settings:
|
|
20
|
+
|
|
21
|
+
```json
|
|
22
|
+
{
|
|
23
|
+
"mcpServers": {
|
|
24
|
+
"toolkit": {
|
|
25
|
+
"command": "npx",
|
|
26
|
+
"args": ["-y", "mcp-all-tools"]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## All Tools (54)
|
|
33
|
+
|
|
34
|
+
### Developer Utilities (13 tools)
|
|
35
|
+
|
|
36
|
+
| Tool | Description |
|
|
37
|
+
|------|-------------|
|
|
38
|
+
| `uuid` | Generate UUID v4 (up to 10 at once) |
|
|
39
|
+
| `hash` | Hash text with md5, sha1, or sha256 |
|
|
40
|
+
| `base64` | Encode or decode base64 |
|
|
41
|
+
| `timestamp` | Convert between Unix timestamps and ISO 8601 |
|
|
42
|
+
| `jwt_decode` | Decode a JWT token (header + payload) |
|
|
43
|
+
| `random_string` | Generate random strings/passwords |
|
|
44
|
+
| `url_encode` | URL encode or decode strings |
|
|
45
|
+
| `json_format` | Pretty-print or minify JSON |
|
|
46
|
+
| `regex_test` | Test regex patterns with match details |
|
|
47
|
+
| `cron_explain` | Explain cron expressions with next 5 run times |
|
|
48
|
+
| `hmac` | Generate HMAC signatures |
|
|
49
|
+
| `color_convert` | Convert between hex, RGB, and HSL |
|
|
50
|
+
| `semver_compare` | Compare semantic versions |
|
|
51
|
+
|
|
52
|
+
### API Tools (8 tools)
|
|
53
|
+
|
|
54
|
+
| Tool | Description |
|
|
55
|
+
|------|-------------|
|
|
56
|
+
| `http_status` | Look up HTTP status codes |
|
|
57
|
+
| `mime_lookup` | Find MIME types for file extensions |
|
|
58
|
+
| `jwt_create` | Create unsigned JWT tokens for testing |
|
|
59
|
+
| `mock_data` | Generate fake people (names, emails, addresses) |
|
|
60
|
+
| `cors_headers` | Generate CORS response headers |
|
|
61
|
+
| `cookie_parse` | Parse Cookie/Set-Cookie headers |
|
|
62
|
+
| `basic_auth` | Generate Basic Authorization headers |
|
|
63
|
+
| `query_string` | Parse or build URL query strings |
|
|
64
|
+
|
|
65
|
+
### Text Tools (10 tools)
|
|
66
|
+
|
|
67
|
+
| Tool | Description |
|
|
68
|
+
|------|-------------|
|
|
69
|
+
| `case_convert` | Convert between camelCase, snake_case, kebab-case, PascalCase, etc. |
|
|
70
|
+
| `slugify` | Convert text to URL-friendly slugs |
|
|
71
|
+
| `word_count` | Count words, characters, sentences, reading time |
|
|
72
|
+
| `lorem_ipsum` | Generate placeholder text |
|
|
73
|
+
| `truncate` | Truncate text at word/sentence/character boundaries |
|
|
74
|
+
| `regex_replace` | Find and replace with regex |
|
|
75
|
+
| `markdown_strip` | Strip markdown formatting to plain text |
|
|
76
|
+
| `text_reverse` | Reverse text by chars, words, or lines |
|
|
77
|
+
| `line_sort` | Sort lines alphabetically, numerically, by length |
|
|
78
|
+
| `text_diff` | Compare two texts line by line |
|
|
79
|
+
|
|
80
|
+
### Math Tools (12 tools)
|
|
81
|
+
|
|
82
|
+
| Tool | Description |
|
|
83
|
+
|------|-------------|
|
|
84
|
+
| `calc` | Evaluate math expressions (safe, no eval) |
|
|
85
|
+
| `statistics` | Mean, median, mode, stddev, variance, etc. |
|
|
86
|
+
| `percentage` | Percentage of, is-what-percent, percent change |
|
|
87
|
+
| `base_convert` | Convert between number bases (2-36) |
|
|
88
|
+
| `unit_convert` | Length, weight, temperature, data, time conversions |
|
|
89
|
+
| `compound_interest` | Compound interest with optional contributions |
|
|
90
|
+
| `loan_payment` | Monthly payment, total interest for loans |
|
|
91
|
+
| `proportion` | Solve direct and inverse proportions |
|
|
92
|
+
| `prime_check` | Primality test with factorization |
|
|
93
|
+
| `gcd_lcm` | Greatest common divisor and least common multiple |
|
|
94
|
+
| `random_number` | Random integers or floats in a range |
|
|
95
|
+
| `matrix` | Add, multiply, transpose, determinant |
|
|
96
|
+
|
|
97
|
+
### DateTime Tools (10 tools)
|
|
98
|
+
|
|
99
|
+
| Tool | Description |
|
|
100
|
+
|------|-------------|
|
|
101
|
+
| `now` | Current time in multiple timezones |
|
|
102
|
+
| `convert_timezone` | Convert between timezones |
|
|
103
|
+
| `date_math` | Add/subtract time from dates |
|
|
104
|
+
| `date_diff` | Difference between dates (days, hours, business days) |
|
|
105
|
+
| `format_date` | Format dates with custom patterns |
|
|
106
|
+
| `unix_timestamp` | Convert Unix timestamps to/from ISO dates |
|
|
107
|
+
| `business_days` | Count or add business days |
|
|
108
|
+
| `explain_cron` | Explain cron expressions in plain English |
|
|
109
|
+
| `countdown` | Time remaining until or elapsed since a date |
|
|
110
|
+
| `date_info` | Day of week, ISO week, quarter, leap year, etc. |
|
|
111
|
+
|
|
112
|
+
### Calculator (1 tool)
|
|
113
|
+
|
|
114
|
+
| Tool | Description |
|
|
115
|
+
|------|-------------|
|
|
116
|
+
| `currency_convert` | Convert between USD, EUR, GBP, MYR, SGD, JPY, AUD |
|
|
117
|
+
|
|
118
|
+
## Individual Packages
|
|
119
|
+
|
|
120
|
+
If you only need a subset of tools, install individual packages:
|
|
121
|
+
|
|
122
|
+
- [mcp-devutils](https://www.npmjs.com/package/mcp-devutils) -- 13 developer utilities
|
|
123
|
+
- [mcp-apitools](https://www.npmjs.com/package/mcp-apitools) -- 8 API helper tools
|
|
124
|
+
- [mcp-texttools](https://www.npmjs.com/package/mcp-texttools) -- 10 text manipulation tools
|
|
125
|
+
- [mcp-mathtools](https://www.npmjs.com/package/mcp-mathtools) -- 12 math and calculation tools
|
|
126
|
+
- [mcp-datetime](https://www.npmjs.com/package/mcp-datetime) -- 10 date and time tools
|
|
127
|
+
- [mcp-quick-calc](https://www.npmjs.com/package/mcp-quick-calc) -- 5 quick calculator tools
|
|
128
|
+
|
|
129
|
+
## Support
|
|
130
|
+
|
|
131
|
+
If you find this useful, consider buying me a coffee:
|
|
132
|
+
|
|
133
|
+
[Buy Me a Coffee](https://buymeacoffee.com/gl89tu25lp)
|
|
134
|
+
|
|
135
|
+
## License
|
|
136
|
+
|
|
137
|
+
MIT
|