SW Toolbox MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SW Toolbox MCPCompress image.jpg"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SW Toolbox MCP
Local MCP hub for SW Toolbox. Agents call file tools on your machine instead of writing a script. Files stay on the machine.
Needs SW Toolbox Pro ($15 once). Set SW_TOOLBOX_KEY to your Polar SW-TBX-… key. Without it, npx exits and does not register tools. The websites and the Chrome popup stay free.
Use with Cursor
{
"mcpServers": {
"sw-toolbox": {
"command": "npx",
"args": ["-y", "github:simonwong201293/tools-mcp"],
"env": {
"SW_TOOLS_GROUPS": "images",
"SW_TOOLBOX_KEY": "SW-TBX-your-pro-key"
}
}
}
}SW_TOOLS_GROUPS is a comma list: images, pdf, data.
Related MCP server: mcp-pdf-utils
Groups
Group | Tools |
images | compress_image, convert_image, resize_image, strip_exif, heic_convert |
merge_pdf, split_pdf, images_to_pdf | |
data | format_json, view_csv, make_qr, color_palette |
HTTP MCP (serve)
Same Pro key required.
SW_TOOLBOX_KEY=SW-TBX-your-pro-key npx github:simonwong201293/tools-mcp serveBinds 127.0.0.1:17321:
GET /health— Agent panel probePOST /shutdown— Agent panel Stop/mcp— Streamable HTTP MCP
Chrome Start hub still uses this after install-host and a pasted Pro key.
Mint keys (owner)
node scripts/mint-pro-key.mjs 1
node scripts/mint-pro-key.mjs 1 20Keep PRO_SECRET in sync with src/license.ts and web-tools-ext/src/lib/mcp/license.ts.
Develop
npm install
npm run build
SW_TOOLBOX_KEY=SW-TBX-your-pro-key node dist/index.jsAvailable Tools
1 toolcompress_imageA
Compress a local image to a target size (KB) or quality. Writes a new file next to the source unless output is set. Does not upload.
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | Local path to the source image | |
| format | No | ||
| output | No | Local output path | |
| quality | No | JPEG/WebP quality 1–100 | |
| targetKB | No | Max size in kilobytes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It states that the tool writes a new file next to the source unless an output path is set, and clarifies that it does not upload. This provides useful side-effect information, though it does not mention potential overwriting behavior, permissions, or error cases.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, consisting of two sentences that front-load the core purpose and follow with a behavioral note. Every word earns its place, and there is no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, no annotations, and no output schema, the description covers the essential aspects: what it does, how output is handled, and a key non-behavior (no upload). It does not describe return values or edge cases, but those are arguably less critical for a simple compression tool, making this adequately complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is high (80%), so a baseline of 3 applies. The description adds value by clarifying the relationship between targetKB and quality ('target size (KB) or quality') and by explaining the default behavior of the output parameter ('Writes a new file next to the source unless output is set'). This goes beyond the schema's individual descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Compress') and resource ('a local image'), and specifies the two modes of operation (target size or quality). Even though no sibling tools are listed, the purpose is unambiguous and distinct.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (when you need to compress a local image) and adds a useful exclusion ('Does not upload'). However, it does not explicitly discuss alternatives or when not to use it beyond the upload note, so guidance is only implied rather than fully specified.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v0.3.0- First observed
compress_image
TDQS
With only one tool, there is no possibility of confusing it with another. The tool's purpose is clearly distinct by virtue of being the only operation available.
The single tool name 'compress_image' follows a clear verb_noun pattern, which is internally consistent. There are no other tools to create mixed conventions.
The server name 'SW Toolbox MCP' suggests a collection of utility tools, but only one tool is provided. This is too few for the apparent scope, leaving the toolbox feeling sparse and underdeveloped.
As a 'toolbox', this server should offer a range of utilities, but it only provides image compression. The surface is severely incomplete for a general-purpose toolbox, lacking any other common operations an agent would expect.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Convert and compress PDFs and images, redact personal data, and run text and data utilities.
61 text, security, converter, calculator, and PDF tools -- callable via MCP on one host.
Privacy-first PDF tools over MCP: merge, split, rotate, delete, compress, protect, inspect.
238+ dev tools via MCP: JSON, QR, PDF, DNS, hash, UUID, code review, JWT, SSL, WHOIS, and more
Related MCP Servers
- AlicenseAqualityCmaintenanceAn MCP server for image and video processing that allows AI assistants to resize, convert, compress, and analyze media files locally without API keys. It supports a wide range of formats and provides tools for tasks such as metadata removal, frame extraction, and video conversion.134MIT
- AlicenseAqualityDmaintenanceAn MCP server for local PDF manipulation including merging, splitting, rotating, watermarking, and text extraction. It works with various MCP-compatible clients and processes PDFs entirely on-device without cloud services.1117MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for local file conversion, analysis, and image processing across 44 formats with 7 tools, all processed locally.1MIT
- AlicenseAqualityAmaintenanceAn open-source MCP server bundling 50+ local utility tools for PDF processing, web scraping, OCR, data transformation, and more, with zero configuration and no API keys required.5158MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/simonwong201293/tools-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server