
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
@easybits.cloud/mcp
Advanced tools
MCP server for EasyBits — the cloud for AI agents: sandboxes, web, files, SQL databases, documents and app hosting
The cloud for AI agents. Connect your AI to EasyBits — run code in an isolated microVM, search and read the web, store files, query SQL databases, generate documents and deploy apps — all through natural language.
Listed in the official MCP Registry as cloud.easybits/easybits, with both the remote endpoint (streamable-http) and this stdio proxy.
Sign up at easybits.cloud and generate an API key from your developer dashboard.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"easybits": {
"command": "npx",
"args": ["-y", "@easybits.cloud/mcp"],
"env": {
"EASYBITS_API_KEY": "your-api-key"
}
}
}
}
claude mcp add easybits -e EASYBITS_API_KEY=your-api-key -- npx -y @easybits.cloud/mcp
Add to your Cursor MCP settings:
{
"mcpServers": {
"easybits": {
"command": "npx",
"args": ["-y", "@easybits.cloud/mcp"],
"env": {
"EASYBITS_API_KEY": "your-api-key"
}
}
}
}
Ask your AI agent things like:
The proxy is a transport: every tool lives on the server, so the catalog grows without republishing this package. That also means this README does not list the tools — a hand-written list here rots on the next deploy. The live catalog is:
https://www.easybits.cloud/api/tools.json — machine-readable, derived from
the MCP server itself (groups, counts and every tool).tool-groups and
all-mcp-tools sections are generated from the same source.--tools)There are far too many tools to load at once without flooding the model's
context, so the server registers only the groups you ask for. Pass --tools
with one group or several separated by commas:
# Default when you pass nothing: the core group
npx -y @easybits.cloud/mcp
# Core plus microVM sandboxes
npx -y @easybits.cloud/mcp --tools core,sandbox
# Everything, if your model can take it
npx -y @easybits.cloud/mcp --tools all
Groups include core, web, sandbox, hosting, design, docs, sites,
video, payments, email and scripting. tools.json above is the
authoritative list with what each one contains.
Every tool follows the same conventions, so an agent always parses the same shapes:
Success returns the result as JSON text (and structuredContent when applicable).
Errors return isError: true with a JSON body { "error": "message" }, sometimes
with extra fields like code, status, or providerStatus.
Lists (list_*) all return one envelope:
{ "items": [ ... ], "nextCursor": "abc" , "hasMore": true }
Some lists also include total. When hasMore is true, pass nextCursor back as
cursor (or as offset for list_documents / list_websites) to fetch the next page.
When there are no more results, nextCursor is null and hasMore is false.
| Variable | Description | Required |
|---|---|---|
EASYBITS_API_KEY | Your EasyBits API key | Yes |
EASYBITS_URL | Custom API base URL | No |
The key can also be passed as --key eb_sk_live_..., or stored in a
~/.easybitsrc file, which is JSON:
{ "apiKey": "eb_sk_live_your_key_here" }
baseUrl is accepted there too. Precedence for the key is --key, then
EASYBITS_API_KEY, then the rc file.
For programmatic access, use the typed SDK:
npm install @easybits.cloud/sdk
import { EasybitsClient } from "@easybits.cloud/sdk";
const eb = new EasybitsClient({ apiKey: "eb_sk_live_..." });
This package is a stdio-to-HTTP proxy. It reads JSON-RPC messages from stdin and forwards them to the EasyBits MCP endpoint (https://www.easybits.cloud/api/mcp). Responses are streamed back via Server-Sent Events (SSE).
EasyBits works great alongside other AI tools. Here are common patterns for agents that have access to both EasyBits and image generation tools (like fal.ai):
1. Generate image with your image tool (fal.ai, DALL-E, etc.)
2. upload_file → get presigned URL → PUT the image bytes
3. Share via generate_share_token or set access to "public"
4. Send the URL to the user
1. User sends a photo → agent saves it locally
2. Edit with fal.ai tools (bg-remove, upscale, restyle, remove-object, inpaint)
3. upload_file the result to EasyBits for permanent storage
4. Return the EasyBits URL (persistent, unlike fal.ai temp URLs)
1. Generate images/graphics with image tools
2. upload_file each image to EasyBits
3. create_document with HTML sections that reference the uploaded image URLs
4. Share the document link
1. Generate or edit images as needed
2. upload_website_file for each asset
3. set_page_html to build pages referencing those assets
4. Deploy — user gets a live URL
MIT
FAQs
MCP server for EasyBits — the cloud for AI agents: sandboxes, web, files, SQL databases, documents and app hosting
The npm package @easybits.cloud/mcp receives a total of 93 weekly downloads. As such, @easybits.cloud/mcp popularity was classified as not popular.
We found that @easybits.cloud/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.