JUHE API Marketplace
r33drichards avatar
MCP Server

mcp-js

A Javascript code execution sandbox that uses v8 to isolate code to run AI generated javascript locally without fear. Supports heap snapshotting for persistent sessions.

37
GitHub Stars
3/10/2026
Last Updated
MCP Server Configuration
1{
2 "name": "js",
3 "command": "/usr/local/bin/mcp-v8 --s3-bucket my-bucket-name"
4}
JSON4 lines
  1. Home
  2. MCP Servers
  3. mcp-js

README Documentation

mcp-v8: V8 JavaScript MCP Server

A Rust-based Model Context Protocol (MCP) server that exposes a V8 JavaScript runtime as a tool for AI agents like Claude and Cursor. Supports persistent heap snapshots via S3 or local filesystem, and is ready for integration with modern AI development environments.

Features

  • Async Execution Model: run_js returns immediately with an execution ID. Poll status with get_execution, read console output with get_execution_output, and cancel running executions with cancel_execution.
  • Console Output: Full support for console.log, console.info, console.warn, and console.error. Output is streamed to persistent storage during execution and can be read in real-time with paginated access (line-based or byte-based).
  • Async/Await Support: Full support for async/await and Promises via the deno_core event loop.
  • V8 JavaScript Execution: Run arbitrary JavaScript code in a secure, isolated V8 engine.
  • TypeScript Support: Run TypeScript code directly — types are stripped before execution using SWC. This is type removal only, not type checking.
  • WebAssembly Support: Compile and run WASM modules using the standard WebAssembly JavaScript API (WebAssembly.Module, WebAssembly.Instance, WebAssembly.validate).
  • ES Module Imports: Import npm packages, JSR packages, and URL modules using Deno-style import syntax. Packages are fetched from esm.sh at runtime — no npm install needed. (e.g., import { camelCase } from "npm:lodash-es@4.17.21")
  • Content-Addressed Heap Snapshots: Persist and restore V8 heap state between runs using content-addressed storage, supporting both S3 and local file storage.
  • Stateless Mode: Optional mode for fresh executions without heap persistence, ideal for serverless environments.
  • MCP Protocol: Implements the Model Context Protocol for seamless tool integration with Claude, Cursor, and other MCP clients.
  • Configurable Storage: Choose between S3, local directory, or stateless mode at runtime.
  • Multiple Transports: Supports stdio, Streamable HTTP (MCP 2025-03-26+), and SSE (Server-Sent Events) transport protocols.
  • Clustering: Optional Raft-based clustering for distributed coordination, replicated session logging, and horizontal scaling.
  • Concurrency Control: Configurable concurrent V8 execution limits with semaphore-based throttling.
  • Policy-Gated Filesystem Access: Optional fs module for Node.js-compatible file operations (read, write, delete, etc.), with every operation checked against a Rego policy before execution.
  • OPA-Gated Fetch: Optional fetch() function for JavaScript following the web standard Fetch API, with every HTTP request checked against an Open Policy Agent policy before execution.
  • Fetch Header Injection: Automatically inject headers (e.g., auth tokens, API keys) into outgoing fetch requests based on host and method matching rules, configured via CLI flags or a JSON config file.

Installation

Install mcp-v8 using the provided install script:

curl -fsSL https://raw.githubusercontent.com/r33drichards/mcp-js/main/install.sh | sudo bash

This will automatically download and install the latest release for your platform to /usr/local/bin/mcp-v8 (you may be prompted for your password).


Advanced users: If you prefer to build from source, see the Build from Source section at the end of this document.

Command Line Arguments

mcp-v8 supports the following command line arguments:

Storage Options

  • --s3-bucket <bucket>: Use AWS S3 for heap snapshots. Specify the S3 bucket name. (Conflicts with --stateless)
  • --cache-dir <path>: Local filesystem cache directory for S3 write-through caching. Reduces latency by caching snapshots locally. (Requires --s3-bucket)
  • --directory-path <path>: Use a local directory for heap snapshots. Specify the directory path. (Conflicts with --stateless)
  • --stateless: Run in stateless mode - no heap snapshots are saved or loaded. Each JavaScript execution starts with a fresh V8 isolate. (Conflicts with --s3-bucket and --directory-path)

Note: For heap storage, if neither --s3-bucket, --directory-path, nor --stateless is provided, the server defaults to using /tmp/mcp-v8-heaps as the local directory.

Transport Options

  • --http-port <port>: Enable Streamable HTTP transport (MCP 2025-03-26+) on the specified port. Serves the MCP endpoint at /mcp and a plain API at /api/exec. If not provided, the server uses stdio transport (default). (Conflicts with --sse-port)
  • --sse-port <port>: Enable SSE (Server-Sent Events) transport on the specified port. Exposes /sse for the event stream and /message for client requests. (Conflicts with --http-port)

Execution Limits

  • --heap-memory-max <megabytes>: Maximum V8 heap memory per isolate in megabytes (1–64, default: 8).
  • --execution-timeout <seconds>: Maximum execution timeout in seconds (1–300, default: 30).
  • --max-concurrent-executions <n>: Maximum number of concurrent V8 executions (default: CPU core count). Controls how many JavaScript executions can run in parallel.

Session Logging

  • --session-db-path <path>: Path to the sled database used for session logging (default: /tmp/mcp-v8-sessions). Only applies in stateful mode. (Conflicts with --stateless)

Cluster Options

These options enable Raft-based clustering for distributed coordination and replicated session logging.

  • --cluster-port <port>: Port for the Raft cluster HTTP server. Enables cluster mode when set. (Requires --http-port or --sse-port)
  • --node-id <id>: Unique node identifier within the cluster (default: node1).
  • --peers <peers>: Comma-separated list of seed peer addresses. Format: id@host:port or host:port. Peers can also join dynamically via POST /raft/join.
  • --join <address>: Join an existing cluster by contacting this seed address (host:port). The node registers itself with the cluster leader.
  • --advertise-addr <addr>: Advertise address for this node (host:port). Used for peer discovery and write forwarding. Defaults to <node-id>:<cluster-port>.
  • --heartbeat-interval <ms>: Raft heartbeat interval in milliseconds (default: 100).
  • --election-timeout-min <ms>: Minimum election timeout in milliseconds (default: 300).
  • --election-timeout-max <ms>: Maximum election timeout in milliseconds (default: 500).

OPA / Fetch Options

These options enable an OPA-gated fetch() function in the JavaScript runtime. When --opa-url is set, a fetch(url, opts?) global becomes available. fetch() follows the web standard Fetch API — it returns a Promise that resolves to a Response object. Every outbound HTTP request is first checked against an OPA policy — the request is only made if the policy returns {"allow": true}.

  • --opa-url <URL>: OPA server URL (e.g. http://localhost:8181). Enables fetch() in the JS runtime.
  • --opa-fetch-policy <path>: OPA policy path appended to /v1/data/ (default: mcp/fetch). Requires --opa-url.
  • --fetch-header <RULE>: Inject headers into fetch requests matching host/method rules. Format: host=<host>,header=<name>,value=<val>[,methods=GET;POST]. Can be specified multiple times. Requires --opa-url. See Fetch Header Injection for details.
  • --fetch-header-config <PATH>: Path to a JSON file with header injection rules. Format: [{"host": "...", "methods": [...], "headers": {...}}]. Requires --opa-url. See Fetch Header Injection for details.

Example:

mcp-v8 --stateless --http-port 3000 \
  --opa-url http://localhost:8181 \
  --opa-fetch-policy mcp/fetch

WASM Module Options

Pre-load WebAssembly modules that are available as global variables in every JavaScript execution.

  • --wasm-module <name>=<path>: Pre-load a .wasm file and expose its exports as a global variable with the given name. Can be specified multiple times for multiple modules.
  • --wasm-config <path>: Path to a JSON config file mapping global names to .wasm file paths. Format: {"name": "/path/to/module.wasm", ...}.

Both options can be used together. CLI flags and config file entries are merged; duplicate names cause an error.

Example — CLI flags:

mcp-v8 --stateless --wasm-module math=/path/to/math.wasm --wasm-module crypto=/path/to/crypto.wasm

Example — Config file (wasm-modules.json):

{
  "math": "/path/to/math.wasm",
  "crypto": "/path/to/crypto.wasm"
}
mcp-v8 --stateless --wasm-config wasm-modules.json

After loading, the module exports are available directly in JavaScript:

math.add(21, 21); // → 42

Modules with imports (e.g. WASI modules like SQLite) are also supported. When a module has imports, auto-instantiation is skipped and the compiled WebAssembly.Module is exposed as __wasm_<name>. Your JavaScript code can then instantiate it with the required imports:

// __wasm_sqlite is the compiled WebAssembly.Module
var instance = new WebAssembly.Instance(__wasm_sqlite, {
    wasi_snapshot_preview1: { /* WASI stubs */ },
});
instance.exports.sqlite3_open(/* ... */);

Self-contained modules (no imports) are auto-instantiated as before — their exports are set directly on <name>, and the compiled Module is also available as __wasm_<name>.

See the SQLite WASM example for a complete working example.

Quick Start

After installation, you can run the server directly. Choose one of the following options:

Stdio Transport (Default)

# Use S3 for heap storage (recommended for cloud/persistent use)
mcp-v8 --s3-bucket my-bucket-name

# Use local filesystem directory for heap storage (recommended for local development)
mcp-v8 --directory-path /tmp/mcp-v8-heaps

# Use stateless mode - no heap persistence (recommended for one-off computations)
mcp-v8 --stateless

HTTP Transport (Streamable HTTP)

The HTTP transport uses the Streamable HTTP protocol (MCP 2025-03-26+), which supports bidirectional communication over standard HTTP. The MCP endpoint is served at /mcp:

# Start HTTP server on port 8080 with local filesystem storage
mcp-v8 --directory-path /tmp/mcp-v8-heaps --http-port 8080

# Start HTTP server on port 8080 with S3 storage
mcp-v8 --s3-bucket my-bucket-name --http-port 8080

# Start HTTP server on port 8080 in stateless mode
mcp-v8 --stateless --http-port 8080

The HTTP transport also exposes a plain HTTP API at POST /api/exec for direct JavaScript execution without MCP framing.

The HTTP transport is useful for:

  • Network-based MCP clients
  • Load-balanced and horizontally-scaled deployments
  • Testing and debugging with tools like the MCP Inspector
  • Containerized deployments
  • Remote MCP server access

SSE Transport

Server-Sent Events (SSE) transport for streaming responses:

# Start SSE server on port 8081 with local filesystem storage
mcp-v8 --directory-path /tmp/mcp-v8-heaps --sse-port 8081

# Start SSE server on port 8081 in stateless mode
mcp-v8 --stateless --sse-port 8081

MCP Tools

Execution Workflow

run_js uses an async execution model — it submits code for background execution and returns an execution ID immediately. Use get_execution to poll for completion and retrieve the result, and get_execution_output to read console output.

1. run_js(code)           → { execution_id }
2. get_execution(id)      → { status: "running" | "completed" | "failed" | "cancelled" | "timed_out", result, error }
3. get_execution_output(id, line_offset, line_limit)  → paginated console output

Example:

Call run_js with code: "console.log('hello');"
  → { execution_id: "abc-123" }

Call get_execution with execution_id: "abc-123"
  → { status: "completed" }

Call get_execution_output with execution_id: "abc-123"
  → { data: "hello\n", total_lines: 1 }

Console Output

console.log, console.info, console.warn, and console.error are fully supported. Output is streamed to persistent storage during execution and can be read in real-time using get_execution_output.

get_execution_output supports two pagination modes:

  • Line mode: line_offset + line_limit — fetch N lines starting from line M
  • Byte mode: byte_offset + byte_limit — fetch N bytes starting from byte M

Both modes return position info in both coordinate systems for cross-referencing. Use next_line_offset or next_byte_offset from a response to resume reading.

Tools (All Modes)

ToolDescription
run_jsSubmit JavaScript/TypeScript code for async execution. Returns an execution_id immediately. Parameters: code (required), heap_memory_max_mb (optional, 4–64, default: 8), execution_timeout_secs (optional, 1–300, default: 30).
get_executionPoll execution status and result. Returns execution_id, status, result (if completed), error (if failed), started_at, completed_at.
get_execution_outputRead paginated console output. Supports line-based (line_offset + line_limit) or byte-based (byte_offset + byte_limit) pagination.
cancel_executionTerminate a running V8 execution.
list_executionsList all executions with their status.

Additional Tools (Stateful Mode Only)

In stateful mode, run_js accepts additional parameters: heap (SHA-256 hash to resume from) and session (human-readable session name for logging).

ToolDescription
list_sessionsList all named sessions.
list_session_snapshotsBrowse execution history for a session. Accepts session (required) and fields (optional, comma-separated: index, input_heap, output_heap, code, timestamp).
get_heap_tagsGet tags for a heap snapshot.
set_heap_tagsSet or replace tags on a heap snapshot.
delete_heap_tagsDelete specific tag keys from a heap snapshot.
query_heaps_by_tagsFind heap snapshots matching tag criteria.

Stateless vs Stateful Mode

Stateless Mode (--stateless)

Stateless mode runs each JavaScript execution in a fresh V8 isolate without any heap persistence.

Benefits:

  • Faster execution: No snapshot creation/serialization overhead
  • No storage I/O: Doesn't read or write heap files
  • Fresh isolates: Every JS execution starts clean
  • Perfect for: One-off computations, stateless functions, serverless environments

Example use case: Simple calculations, data transformations, or any scenario where you don't need to persist state between executions.

Stateful Mode (default)

Stateful mode persists the V8 heap state between executions using content-addressed storage backed by either S3 or local filesystem.

Each execution returns a heap content hash (a 64-character SHA-256 hex string) that identifies the snapshot. Pass this hash in the next run_js call to resume from that state. Omit heap to start a fresh session.

Benefits:

  • State persistence: Variables and objects persist between runs
  • Content-addressed: Snapshots are keyed by their SHA-256 hash — no naming collisions, safe concurrent access, and natural deduplication
  • Immutable snapshots: Once written, a snapshot at a given hash never changes
  • Perfect for: Interactive sessions, building up complex state over time

Example use case: Building a data structure incrementally, maintaining session state, or reusing expensive computations.

Named Sessions

You can tag executions with a human-readable session name by passing the session parameter to run_js. When a session name is provided, the server logs each execution (input heap, output heap, code, and timestamp) to an embedded sled database.

Two additional tools are available in stateful mode for browsing session history:

  • list_sessions — Returns an array of all session names that have been used.
  • list_session_snapshots — Returns the log entries for a given session. Accepts a required session parameter and an optional fields parameter (comma-separated) to select specific fields: index, input_heap, output_heap, code, timestamp.

The session database path defaults to /tmp/mcp-v8-sessions and can be overridden with --session-db-path.

Example workflow:

  1. Call run_js with code: "var x = 1; x;" and session: "my-project" → receives execution_id.
  2. Call get_execution with the execution_id → receives { status: "completed", result: "1", heap: "ab12..." }.
  3. Pass the returned heap hash and session: "my-project" in subsequent run_js calls to continue and log the session.
  4. Call list_sessions to see ["my-project"].
  5. Call list_session_snapshots with session: "my-project" to see the full execution history.

Integration

Claude for Desktop

  1. Install the server as above.
  2. Open Claude Desktop → Settings → Developer → Edit Config.
  3. Add your server to claude_desktop_config.json:

Stateful mode with S3:

{
  "mcpServers": {
    "js": {
      "command": "mcp-v8",
      "args": ["--s3-bucket", "my-bucket-name"]
    }
  }
}

Stateful mode with local filesystem:

{
  "mcpServers": {
    "js": {
      "command": "mcp-v8",
      "args": ["--directory-path", "/tmp/mcp-v8-heaps"]
    }
  }
}

Stateless mode:

{
  "mcpServers": {
    "js": {
      "command": "mcp-v8",
      "args": ["--stateless"]
    }
  }
}
  1. Restart Claude Desktop. The new tools will appear under the hammer icon.

Claude Code CLI

Add the MCP server to Claude Code using the claude mcp add command:

Stdio transport (local):

# Stateful mode with local filesystem
claude mcp add mcp-v8 -- mcp-v8 --directory-path /tmp/mcp-v8-heaps

# Stateless mode
claude mcp add mcp-v8 -- mcp-v8 --stateless

SSE transport (remote):

claude mcp add mcp-v8 -t sse https://mcp-js-production.up.railway.app/sse

Then test by running claude and asking: "Run this JavaScript: console.log([1,2,3].map(x => x * 2))"

Cursor

  1. Install the server as above.
  2. Create or edit .cursor/mcp.json in your project root:

Stateful mode with local filesystem:

{
  "mcpServers": {
    "js": {
      "command": "mcp-v8",
      "args": ["--directory-path", "/tmp/mcp-v8-heaps"]
    }
  }
}

Stateless mode:

{
  "mcpServers": {
    "js": {
      "command": "mcp-v8",
      "args": ["--stateless"]
    }
  }
}
  1. Restart Cursor. The MCP tools will be available in the UI.

Claude (Web/Cloud) via Railway

You can also use the hosted version on Railway without installing anything locally:

  1. Go to Claude's connectors settings page
  2. Add a new custom connector:
    • Name: "mcp-v8"
    • URL: https://mcp-js-production.up.railway.app/sse

Example Usage

Ask Claude or Cursor: "Run this JavaScript: console.log(1 + 2)"

The agent will:

  1. Call run_js with code: "console.log(1 + 2)" → receives execution_id
  2. Call get_execution with the execution_id → receives { status: "completed" }
  3. Call get_execution_output with the execution_id → receives { data: "3\n", total_lines: 1 }

In stateful mode, get_execution also returns a heap content hash — pass it back in the next run_js call to resume from that state.

Importing Packages

You can import npm packages, JSR packages, and URL modules directly in your JavaScript code using ES module import syntax. Packages are fetched from esm.sh at runtime — no npm install or pre-installation step is needed.

npm Packages

Use the npm: prefix followed by the package name and version:

import { camelCase } from "npm:lodash-es@4.17.21";
camelCase("hello world"); // → "helloWorld"
import dayjs from "npm:dayjs@1.11.13";
dayjs("2025-01-15").format("MMMM D, YYYY"); // → "January 15, 2025"
JSR Packages

Use the jsr: prefix for packages from the JSR registry:

import { camelCase } from "jsr:@luca/cases@1.0.0";
camelCase("hello world"); // → "helloWorld"
URL Imports

Import directly from any URL that serves ES modules:

import { pascalCase } from "https://deno.land/x/case/mod.ts";
pascalCase("hello world"); // → "HelloWorld"
How It Works
  • npm: specifiers are rewritten to https://esm.sh/<package> URLs
  • jsr: specifiers are rewritten to https://esm.sh/jsr/<package> URLs
  • https:// and http:// URLs are fetched directly
  • Relative imports (e.g., ./utils.js) resolve against the parent module's URL
  • TypeScript modules (.ts, .tsx) fetched from URLs are automatically type-stripped before execution
Tips
  • Always pin versions (e.g., npm:lodash-es@4.17.21) for reproducible results
  • Only packages that ship as ES modules are supported — CommonJS-only packages won't work directly, but esm.sh converts many of them automatically
  • Imports are fetched over the network at runtime, so the first execution may be slower while modules are downloaded
  • Top-level await is supported, so you can use import() dynamically as well:
    const { default: _ } = await import("npm:lodash-es@4.17.21");
    _.chunk([1, 2, 3, 4, 5], 2); // → [[1, 2], [3, 4], [5]]
    

WebAssembly

You can compile and run WebAssembly modules using the standard WebAssembly JavaScript API:

const wasmBytes = new Uint8Array([
  0x00,0x61,0x73,0x6d, // magic
  0x01,0x00,0x00,0x00, // version
  0x01,0x07,0x01,0x60,0x02,0x7f,0x7f,0x01,0x7f, // type: (i32,i32)->i32
  0x03,0x02,0x01,0x00, // function section
  0x07,0x07,0x01,0x03,0x61,0x64,0x64,0x00,0x00, // export "add"
  0x0a,0x09,0x01,0x07,0x00,0x20,0x00,0x20,0x01,0x6a,0x0b // body: local.get 0, local.get 1, i32.add
]);
const mod = new WebAssembly.Module(wasmBytes);
const inst = new WebAssembly.Instance(mod);
inst.exports.add(21, 21); // → 42

Both synchronous (WebAssembly.Module / WebAssembly.Instance) and async (WebAssembly.compile, WebAssembly.instantiate) WebAssembly APIs are supported. The runtime resolves Promises automatically via the event loop.

Alternatively, you can pre-load .wasm files at server startup using --wasm-module or --wasm-config so they are available as globals in every execution without inline byte arrays. See WASM Module Options for details.

SQLite WASM

Run a full SQLite database inside mcp-v8 using SQLite WASM:

# Build the WASM module (requires Emscripten)
./examples/sqlite-wasm/build.sh

# Start the server with SQLite pre-loaded
mcp-v8 --stateless --wasm-module sqlite=examples/sqlite-wasm/sqlite3.wasm

Then run SQL from JavaScript:

var db = new SQLite();
db.exec("CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT, age INTEGER)");
db.exec("INSERT INTO users (name, age) VALUES ('Alice', 30)");
var result = db.query("SELECT * FROM users");
db.close();
JSON.stringify(result.rows);  // → [{"id":1,"name":"Alice","age":30}]

See examples/sqlite-wasm/ for the full example including the SQLite wrapper code and WASI import stubs.

OPA-Gated Fetch

When the server is started with --opa-url, JavaScript code can use a fetch(url, opts?) function following the web standard Fetch API. Every request is checked against an OPA policy before the HTTP call is made.

1. Write an OPA policy

Create a Rego policy that controls which requests are allowed:

package mcp.fetch

default allow = false

# Allow GET requests to a specific API host
allow if {
    input.method == "GET"
    input.url_parsed.host == "api.example.com"
    startswith(input.url_parsed.path, "/public/")
}

The policy input includes:

  • operation: always "fetch"
  • url: the full URL string
  • method: HTTP method (e.g. "GET", "POST")
  • headers: request headers (keys normalized to lowercase)
  • url_parsed: parsed URL components — scheme, host, port, path, query

2. Start the server with OPA enabled

mcp-v8 --stateless --http-port 3000 \
  --opa-url http://localhost:8181 \
  --opa-fetch-policy mcp/fetch

3. Use fetch() in JavaScript

const resp = await fetch("https://api.example.com/public/data");
resp.status;              // 200
resp.ok;                  // true
await resp.text();        // response body as string
await resp.json();        // parsed JSON
resp.headers.get("content-type"); // header value

The response object supports:

  • Properties: .ok, .status, .statusText, .url, .redirected, .type, .bodyUsed
  • Methods: .text(), .json(), .clone() (.text() and .json() return Promises)
  • Headers: .headers.get(name), .headers.has(name), .headers.entries(), .headers.keys(), .headers.values(), .headers.forEach(fn)

fetch() also accepts an options object:

const resp = await fetch("https://api.example.com/data", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ key: "value" })
});
JSON.stringify(await resp.json());

If the OPA policy denies a request, the Promise returned by fetch() is rejected with an error.

Fetch Header Injection

When using OPA-gated fetch, you can configure automatic header injection rules that add headers to outgoing fetch() requests based on the target host and HTTP method. This is useful for injecting authentication tokens, API keys, or other credentials without embedding them in JavaScript code.

Header injection rules are evaluated per-request. If a rule's host pattern and method filter match, its headers are injected into the request. User-provided headers always take precedence — a rule will not overwrite a header that JavaScript code already set.

CLI Flags (--fetch-header)

Use --fetch-header to define rules inline. The format is:

host=<host>,header=<name>,value=<val>[,methods=GET;POST]
  • host — Host to match (exact or wildcard, see below). Required.
  • header — Header name to inject. Required.
  • value — Header value to inject. Required.
  • methods — Semicolon-separated HTTP methods to match. Optional. If omitted, the rule applies to all methods.

Can be specified multiple times for multiple rules:

mcp-v8 --stateless --opa-url http://localhost:8181 \
  --fetch-header "host=api.github.com,header=Authorization,value=Bearer ghp_xxxx" \
  --fetch-header "host=api.example.com,header=X-API-Key,value=secret123"
JSON Config File (--fetch-header-config)

For managing many rules, use a JSON config file. Each rule can inject multiple headers at once:

[
  {
    "host": "api.github.com",
    "methods": ["GET", "POST"],
    "headers": {
      "Authorization": "Bearer ghp_xxxx",
      "X-GitHub-Api-Version": "2022-11-28"
    }
  },
  {
    "host": "*.example.com",
    "headers": {
      "X-API-Key": "secret123"
    }
  }
]
mcp-v8 --stateless --opa-url http://localhost:8181 \
  --fetch-header-config headers.json

Both --fetch-header and --fetch-header-config can be used together — their rules are merged.

Host Matching
  • Exact match: api.github.com matches only api.github.com.
  • Wildcard: *.github.com matches api.github.com, github.com, and sub.api.github.com.
  • Host matching is case-insensitive.
Header Precedence

Headers set explicitly in JavaScript fetch() calls always win. Injection rules only add headers that are not already present:

// Rule: host=api.example.com, header=Authorization, value=Bearer injected

// Header is injected (not set by code):
await fetch("https://api.example.com/data");
// → request includes Authorization: Bearer injected

// User header takes precedence:
await fetch("https://api.example.com/data", {
  headers: { "Authorization": "Bearer my-own-token" }
});
// → request includes Authorization: Bearer my-own-token (rule skipped)

Policy-Gated Filesystem Access

When the server is started with a Rego policy configuration, JavaScript code can use an fs module providing Node.js-compatible file operations. Every operation is evaluated against a Rego policy before execution.

The fs module supports the following operations:

const data = await fs.readFile("/tmp/data.txt");          // string (utf-8)
const data = await fs.readFile("/tmp/data.bin", "buffer"); // Uint8Array
await fs.writeFile("/tmp/out.txt", "hello");              // string data
await fs.writeFile("/tmp/out.bin", uint8array);           // binary data
await fs.appendFile("/tmp/out.txt", " world");
const entries = await fs.readdir("/tmp");                  // string[]
const info = await fs.stat("/tmp/data.txt");               // {size,isFile,isDirectory,...}
await fs.mkdir("/tmp/newdir", { recursive: true });
await fs.rm("/tmp/data.txt");
await fs.rm("/tmp/newdir", { recursive: true });
await fs.rename("/tmp/old.txt", "/tmp/new.txt");
await fs.copyFile("/tmp/a.txt", "/tmp/b.txt");
const bool = await fs.exists("/tmp/data.txt");

1. Write a Rego policy

Create a Rego policy that controls which filesystem operations are allowed:

package mcp.fs

default allow = false

# Allow reading from /tmp
allow if {
    input.operation == "readFile"
    startswith(input.path, "/tmp/")
}

# Allow writing to /tmp
allow if {
    input.operation == "writeFile"
    startswith(input.path, "/tmp/")
}

# Allow other common operations
allow if {
    input.operation in ["readdir", "stat", "exists"]
    startswith(input.path, "/tmp/")
}

The policy input includes:

  • operation: the filesystem operation being performed (e.g., "readFile", "writeFile", "mkdir", "rm", "rename", "copyFile", "appendFile", "readdir", "stat", "exists")
  • path: the file or directory path being accessed
  • destination: (optional) the destination path for operations like rename and copyFile
  • recursive: (optional, boolean) whether a recursive operation was requested (for mkdir and rm)
  • encoding: (optional) the encoding parameter for readFile (either "utf8" or "buffer")

2. Start the server with policy configuration

Use --policies-json to enable filesystem access with local Rego policies:

mcp-v8 --stateless --http-port 3000 \
  --policies-json /path/to/policies.json

The policies.json file should contain policy configuration objects. See the POLICIES section for detailed configuration examples.

3. Use fs in JavaScript

All fs operations return Promises and can be used with await:

// Read a file
const content = await fs.readFile("/tmp/data.txt");
console.log(content);

// Write a file
await fs.writeFile("/tmp/output.txt", "Hello, World!");

// Check if a file exists
const exists = await fs.exists("/tmp/output.txt");
console.log(exists); // true

// Get file metadata
const stats = await fs.stat("/tmp/output.txt");
console.log(stats.size); // file size in bytes

// List directory contents
const files = await fs.readdir("/tmp");
console.log(files); // array of filenames

// Create a directory
await fs.mkdir("/tmp/mydir", { recursive: true });

// Copy a file
await fs.copyFile("/tmp/output.txt", "/tmp/backup.txt");

// Rename a file
await fs.rename("/tmp/backup.txt", "/tmp/backup_old.txt");

// Delete a file
await fs.rm("/tmp/backup_old.txt");

// Delete a directory recursively
await fs.rm("/tmp/mydir", { recursive: true });

If a policy denies an operation, the Promise returned by the fs operation is rejected with an error message indicating that the operation was denied by policy.

Binary Data

When reading binary files, specify "buffer" as the encoding parameter:

const buffer = await fs.readFile("/tmp/image.png", "buffer");
// buffer is a Uint8Array

// Write binary data
const newBuffer = new Uint8Array([72, 101, 108, 108, 111]); // "Hello"
await fs.writeFile("/tmp/binary.bin", newBuffer);

Loading .wasm Files

Instead of embedding raw bytes in JavaScript, you can compile a .wasm file once and load it at server startup. The module's exports are then available as a global variable in every execution.

1. Create a WASM module

Write a WebAssembly Text Format (.wat) file and compile it with wat2wasm:

;; math.wat — exports add(i32, i32) -> i32
(module
  (func $add (param i32 i32) (result i32)
    local.get 0
    local.get 1
    i32.add)
  (export "add" (func $add)))
wat2wasm math.wat -o math.wasm

2. Start the server with the module

# Single module
mcp-v8 --stateless --wasm-module math=./math.wasm

# Multiple modules
mcp-v8 --stateless \
  --wasm-module math=./math.wasm \
  --wasm-module physics=./physics.wasm

Or use a JSON config file for many modules:

{
  "math": "./math.wasm",
  "physics": "./physics.wasm"
}
mcp-v8 --stateless --wasm-config wasm-modules.json

3. Call exports from JavaScript

The module's exports are available directly on the global variable:

math.add(2, 3);          // → 5
math.add(100, 200);      // → 300

When multiple modules are loaded, each is its own global:

var sum = math.add(10, 5);           // 15
var product = physics.multiply(3, 4); // 12
sum + product;                        // → 27

Heap Storage Options

You can configure heap storage using the following command line arguments:

  • S3: --s3-bucket <bucket>
    • Example: mcp-v8 --s3-bucket my-bucket-name
    • Requires AWS credentials in your environment.
    • Ideal for cloud deployments and sharing state across instances.
  • S3 with write-through cache: --s3-bucket <bucket> --cache-dir <path>
    • Example: mcp-v8 --s3-bucket my-bucket-name --cache-dir /tmp/mcp-v8-cache
    • Reads from local cache first, writes to both local cache and S3.
    • Reduces latency for repeated snapshot access.
  • Filesystem: --directory-path <path>
    • Example: mcp-v8 --directory-path /tmp/mcp-v8-heaps
    • Stores heap snapshots locally on disk.
    • Ideal for local development and testing.
  • Stateless: --stateless
    • Example: mcp-v8 --stateless
    • No heap persistence - each execution starts fresh.
    • Ideal for one-off computations and serverless environments.

Note: Only one storage option can be used at a time. If multiple are provided, the server will return an error.

Limitations

  • No timers: Functions like setTimeout and setInterval are not available.
  • No DOM or browser APIs: This is not a browser environment; there is no access to window, document, or other browser-specific objects.
  • TypeScript: type removal only: TypeScript type annotations are stripped before execution. No type checking is performed — invalid types are silently removed, not reported as errors.

Build from Source (Advanced)

If you prefer to build from source instead of using the install script:

Prerequisites

  • Rust (nightly toolchain recommended)
  • (Optional) AWS credentials for S3 storage

Build the Server

cd server
cargo build --release

The built binary will be located at server/target/release/server. You can use this path in the integration steps above instead of /usr/local/bin/mcp-v8 if desired.

MCP-V8 Load Test Benchmark Report v0.1.0

Comparison of single-node vs 3-node cluster at various request rates.

Results

ran on railway gha runners on pr

TopologyTarget RateActual Iter/sHTTP Req/sExec Avg (ms)Exec p95 (ms)Exec p99 (ms)Success %DroppedMax VUs
cluster-stateful100/s99.599.544.9196.88416.99100%3141
cluster-stateful200/s199.6199.623.2279.32131.13100%1333
cluster-stateless1000/s999.9999.93.827.7213.09100%0100
cluster-stateless100/s1001003.675.658.03100%010
cluster-stateless200/s2002003.565.98.61100%020
cluster-stateless500/s5005003.425.859.2100%050
single-stateful100/s99.199.1215.12362.5376.6100%3242
single-stateful200/s97.897.81948.822212.552960.96100%5939200
single-stateless1000/s977.1977.160.98482.98602.38100%843561
single-stateless100/s1001003.715.738.73100%010
single-stateless200/s2002003.615.437.74100%020
single-stateless500/s5005004.678.4927.98100%050

P95 Latency

TopologyRateP95 (ms)
cluster-stateful100/s196.88█████████████████████
cluster-stateful200/s79.32█████████████████
cluster-stateless100/s5.65███████
cluster-stateless200/s5.9███████
cluster-stateless500/s5.85███████
cluster-stateless1000/s7.72████████
single-stateful100/s362.5███████████████████████
single-stateful200/s2212.55██████████████████████████████
single-stateless100/s5.73███████
single-stateless200/s5.43██████
single-stateless500/s8.49████████
single-stateless1000/s482.98████████████████████████

Notes

  • Target Rate: The configured constant-arrival-rate (requests/second k6 attempts)
  • Actual Iter/s: Achieved iterations per second (each iteration = 1 POST /api/exec)
  • HTTP Req/s: Total HTTP requests per second (1 per iteration)
  • Dropped: Iterations k6 couldn't schedule because VUs were exhausted (indicates server saturation)
  • Topology: single = 1 MCP-V8 node; cluster = 3 MCP-V8 nodes with Raft

Quick Install

Quick Actions

View on GitHubView All Servers

Key Features

Model Context Protocol
Secure Communication
Real-time Updates
Open Source

Boost your projects with Wisdom Gate LLM API

Supporting GPT-5, Claude-4, DeepSeek v3, Gemini and more.

Enjoy a free trial and save 20%+ compared to official pricing.

Learn More
JUHE API Marketplace

Accelerate development, innovate faster, and transform your business with our comprehensive API ecosystem.

JUHE API VS

  • vs. RapidAPI
  • vs. API Layer
  • API Platforms 2025
  • API Marketplaces 2025
  • Best Alternatives to RapidAPI

For Developers

  • Console
  • Collections
  • Documentation
  • MCP Servers
  • Free APIs
  • Temp Mail Demo

Product

  • Browse APIs
  • Suggest an API
  • Wisdom Gate LLM
  • Global SMS Messaging
  • Temp Mail API

Company

  • What's New
  • Welcome
  • About Us
  • Contact Support
  • Terms of Service
  • Privacy Policy
Featured on Startup FameFeatured on Twelve ToolsFazier badgeJuheAPI Marketplace - Connect smarter, beyond APIs | Product Huntai tools code.marketDang.aiFeatured on ShowMeBestAI
Copyright © 2026 JUHEDATA HK LIMITED - All rights reserved