publicsofttools-mcp
14 utility tools via the PublicSoftTools API: QR code generation, PDF compress/merge/split/convert/unlock, cryptographic hashing (MD5/SHA-1/SHA-256/SHA-512), UUID generation, base64 encode/decode, secure password generation, IP geolocation, DNS records, SSL certificate check, and WHOIS lookup. Free tier: 1,500 calls/month.
README
PublicSoftTools MCP Server
Give any MCP-compatible AI agent (Claude, Cursor, Windsurf) access to 14 utility tools from PublicSoftTools.
npm: npx publicsofttools-mcp
API docs: https://www.publicsofttools.com/docs
Get a key: https://www.publicsofttools.com/account/api-keys
Tools included
| Tool | Endpoint | Description |
|---|---|---|
generate_qr_code |
POST /api/v1/util/qr |
QR code as base64 PNG or raw SVG |
generate_hash |
POST /api/v1/util/hash |
MD5, SHA-1, SHA-256, SHA-384, SHA-512 |
generate_uuid |
GET /api/v1/util/uuid |
UUID v4 — up to 100 at once |
encode_decode_base64 |
POST /api/v1/util/base64 |
Encode or decode, with URL-safe variant |
generate_password |
POST /api/v1/util/password |
Cryptographically secure password |
lookup_ip |
GET /api/v1/ip/lookup |
Geolocation, ISP, ASN, proxy/VPN detection |
check_ssl |
GET /api/v1/domain/ssl |
SSL certificate details + days remaining |
lookup_dns |
GET /api/v1/domain/dns |
A, AAAA, MX, TXT, CNAME, NS, SOA records |
whois_lookup |
GET /api/v1/domain/whois |
Domain registrar, dates, nameservers |
compress_pdf |
POST /api/v1/pdf/compress |
Reduce PDF file size (max 4 MB) |
merge_pdfs |
POST /api/v1/pdf/merge |
Combine 2–20 PDFs into one |
split_pdf |
POST /api/v1/pdf/split |
Split by page range or every N pages |
pdf_to_word |
POST /api/v1/pdf/to-word |
Convert PDF to editable .docx |
unlock_pdf |
POST /api/v1/pdf/unlock |
Remove permission restrictions |
Prerequisites
- Node.js 18+ (required for native
fetchsupport) - A PublicSoftTools API key — get one free (1,500 calls/month, no credit card)
Install & configure
Claude Desktop
Add to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/claude/claude_desktop_config.json
{
"mcpServers": {
"publicsofttools": {
"command": "npx",
"args": ["-y", "publicsofttools-mcp"],
"env": {
"PST_API_KEY": "your_api_key_here"
}
}
}
}
Restart Claude Desktop. The tools will appear in the tools panel.
Cursor
Open Settings → MCP and add:
{
"publicsofttools": {
"command": "npx",
"args": ["-y", "publicsofttools-mcp"],
"env": { "PST_API_KEY": "your_api_key_here" }
}
}
Windsurf
Open Settings → MCP Servers and add the same JSON block as Cursor above.
Tool reference
All tools require the PST_API_KEY environment variable. All file inputs/outputs use base64-encoded content.
generate_qr_code
Generate a QR code image for any text, URL, or data.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
text |
string | yes | — | Text, URL, or data to encode |
size |
number | no | 256 | Output size in pixels (64–1024) |
format |
"png" | "svg" |
no | "png" |
Output image format |
dark |
string | no | "#000000" |
Dark module color (hex) |
light |
string | no | "#ffffff" |
Light module color (hex) |
error_correction |
"L" | "M" | "Q" | "H" |
no | "M" |
Error correction level |
Response
{
"image": "data:image/png;base64,iVBORw0...",
"format": "png",
"size": 256
}
For format: "svg", image is a raw SVG string instead of a data URL.
generate_hash
Hash any text. Omit algorithm to get all five hashes in one call.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
text |
string | yes | — | Text to hash (max 100,000 chars) |
algorithm |
"md5" | "sha1" | "sha256" | "sha384" | "sha512" |
no | all | Hash algorithm |
encoding |
"hex" | "base64" |
no | "hex" |
Output encoding |
Response (all algorithms)
{
"hashes": {
"md5": "5f4dcc3b5aa765d61d8327deb882cf99",
"sha1": "5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8",
"sha256": "5e884898da28047151d0e56f8dc629277...",
"sha384": "a8b64babd0aca91a59bdbb7761b421d4...",
"sha512": "b109f3bbbc244eb82441917ed06d618b..."
},
"encoding": "hex",
"input_length": 8
}
generate_uuid
Generate UUID v4 values in batch.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
count |
number | no | 1 | Number of UUIDs to generate (1–100) |
Response
{
"uuids": [
"550e8400-e29b-41d4-a716-446655440000",
"6ba7b810-9dad-11d1-80b4-00c04fd430c8"
],
"count": 2
}
encode_decode_base64
Encode text to base64 or decode base64 back to plain text.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
text |
string | yes | — | Input text (max 500,000 chars) |
action |
"encode" | "decode" |
yes | — | Operation to perform |
url_safe |
boolean | no | false | Use URL-safe variant (- and _ instead of + and /) |
Response
{
"result": "aGVsbG8gd29ybGQ=",
"action": "encode",
"url_safe": false,
"input_length": 11,
"output_length": 16
}
generate_password
Generate a cryptographically secure random password.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
length |
number | no | 16 | Password length (8–128) |
uppercase |
boolean | no | true | Include uppercase letters (A–Z) |
numbers |
boolean | no | true | Include digits (0–9) |
symbols |
boolean | no | true | Include symbols (!@#$…) |
Response
{
"password": "kR7#mQ2@xZ9!wP4$",
"length": 16,
"entropy_bits": 98.6
}
lookup_ip
Look up geolocation and network info for any IPv4 or IPv6 address.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ip |
string | yes | IPv4 or IPv6 address (e.g. 8.8.8.8) |
Response
{
"ip": "8.8.8.8",
"country": "United States",
"country_code": "US",
"region": "California",
"city": "Mountain View",
"zip": "94043",
"lat": 37.4056,
"lon": -122.0775,
"timezone": "America/Los_Angeles",
"isp": "Google LLC",
"org": "Google LLC",
"asn": "AS15169 Google LLC",
"is_mobile": false,
"is_proxy": false,
"is_hosting": true
}
check_ssl
Check SSL/TLS certificate details for any domain.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain |
string | yes | Domain name (e.g. example.com) |
Response
{
"domain": "example.com",
"valid": true,
"issuer": "Let's Encrypt",
"subject": "example.com",
"san": ["example.com", "www.example.com"],
"valid_from": "2026-01-01T00:00:00Z",
"valid_to": "2026-04-01T00:00:00Z",
"days_remaining": 22,
"protocol": "TLSv1.3"
}
lookup_dns
Query DNS records for a domain. Omit type to get all available record types at once.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
domain |
string | yes | — | Domain to query (e.g. example.com) |
type |
"A" | "AAAA" | "MX" | "TXT" | "CNAME" | "NS" | "SOA" |
no | all | Record type |
Response
{
"domain": "example.com",
"records": {
"A": ["93.184.216.34"],
"MX": [{ "exchange": "mail.example.com", "priority": 10 }],
"NS": ["ns1.example.com", "ns2.example.com"],
"TXT": ["v=spf1 include:_spf.example.com ~all"]
},
"queried_at": "2026-06-09T12:00:00Z"
}
whois_lookup
Get domain registration information.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
domain |
string | yes | Domain to look up (e.g. example.com) |
Response
{
"domain": "example.com",
"registrar": "Example Registrar, Inc.",
"registered_at": "1995-08-14T00:00:00Z",
"expires_at": "2027-08-13T00:00:00Z",
"updated_at": "2024-08-13T00:00:00Z",
"nameservers": ["a.iana-servers.net", "b.iana-servers.net"],
"status": ["clientDeleteProhibited", "clientTransferProhibited"]
}
compress_pdf
Reduce PDF file size using Ghostscript compression. Max file size: 4 MB.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
file_base64 |
string | yes | — | Base64-encoded PDF content |
level |
"screen" | "ebook" | "printer" | "prepress" |
no | "ebook" |
Compression level. screen = smallest, prepress = highest quality |
Response
{
"pdf": "<base64-encoded compressed PDF>",
"original_size": 2048000,
"compressed_size": 819200,
"reduction_percent": 60
}
merge_pdfs
Merge 2–20 PDF files into a single document. Max 4 MB per file.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
files_base64 |
string[] | yes | Array of base64-encoded PDFs to merge in order (2–20 files) |
Response
{
"pdf": "<base64-encoded merged PDF>",
"page_count": 12,
"files_merged": 3
}
split_pdf
Split a PDF into multiple documents. Max file size: 4 MB.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
file_base64 |
string | yes | — | Base64-encoded PDF to split |
mode |
"range" | "every_n" | "every_page" |
yes | — | Split mode |
pages |
string | no | — | Page range when mode=range, e.g. "1-3,5,7-9" |
every_n |
number | no | — | Split every N pages when mode=every_n |
Response
{
"files": [
"<base64-encoded PDF part 1>",
"<base64-encoded PDF part 2>"
],
"count": 2
}
pdf_to_word
Convert a PDF to an editable Word document (.docx). Max file size: 4 MB.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file_base64 |
string | yes | Base64-encoded PDF to convert |
Response
{
"docx": "<base64-encoded .docx file>",
"page_count": 5
}
unlock_pdf
Remove owner-password permission restrictions from a PDF (print lock, copy lock, etc.). Does not require the password if only owner restrictions are set.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
file_base64 |
string | yes | Base64-encoded PDF |
password |
string | no | PDF password, if the file requires one to open |
Response
{
"pdf": "<base64-encoded unlocked PDF>",
"was_encrypted": true
}
Authentication
Set your API key as an environment variable:
export PST_API_KEY=pst_live_your_key_here
Or pass it inline for a one-off test:
PST_API_KEY=pst_live_your_key_here node dist/index.js
The key is sent as X-Api-Key: pst_live_... on every request.
Rate limits & plans
| Plan | Price | Calls/month |
|---|---|---|
| Free | $0 | 1,500 |
| Starter | $29/mo | 15,000 |
| Pro | $99/mo | 100,000 |
| Business | Custom | 1,000,000+ |
When you exceed your limit the API returns 429 Too Many Requests. Limits reset on the 1st of each month (UTC).
Get or upgrade your key: https://www.publicsofttools.com/account/api-keys
Troubleshooting
"PST_API_KEY environment variable is required"
The server exits immediately if no key is set. Make sure the env block in your MCP config has PST_API_KEY set.
Tools don't appear in Claude Desktop
Verify the JSON config is valid (no trailing commas), then fully quit and reopen Claude Desktop — a window close isn't enough.
401 Unauthorized
Your API key is invalid or has been revoked. Look it up again at https://www.publicsofttools.com/account/api-keys.
429 Too Many Requests
You've hit your monthly limit. Upgrade your plan or wait for the 1st-of-month reset.
413 File Too Large
PDF endpoints have a 4 MB binary limit. Compress or split the file before sending.
Node version error
Run node --version. You need Node 18 or later for native fetch. Update via https://nodejs.org.
License
MIT — see LICENSE
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。