Author, read and run Bruno API collections over HTTP, gRPC and WebSocket.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
An MCP server that runs and authors Bruno API collections β both .bru and .yml (opencollection) β with no bru binary and byte-parity against Bruno's own reader.
A Model Context Protocol server for Bruno, the open-source API client. It gives an AI agent in Claude Code, Claude Desktop, Cursor, Windsurf, VS Code or Codex CLI eighteen tools for API testing against a real Bruno collection: create and edit requests, read them back as structured JSON, manage environments and variables, write assertions and test scripts, then run the collection β auth, cookies, redirects, dependency ordering and all β and get the results back in the same turn. No Bruno GUI, no Bruno CLI, no shelling out. The collection it leaves on disk is a normal Bruno collection: your CI runs it with bru run, your teammates open it in the Bruno app.
Active fork of macarthy/bruno-mcp (original inactive since Jul 2025). Maintained as Bruno MCP Studio at Ostico/bruno-mcp-studio β see announcement. The npm package name is unchanged:
@ostico/bruno-mcp.
Your agent already knows HTTP. It does not know your API, and it does not know Bruno's file format. So it guesses. It writes a .bru file from memory, the run fails, it rewrites the file, the run fails differently, and twenty minutes later you have a passing request and no idea which of the six edits mattered. You paid for every one of those turns, and none of that work is on disk in a form your CI or your team's Bruno GUI can use.
The usual escape is curl. Agents are not bad at curl β the problem is that a shell command holds no state. A login, a token, a created resource, a follow-up call that needs the ID from the last response: each of those is a new command, and the glue between them lives only in the agent's context, when the session ends, all is lost. Twenty endpoints tested by curl leave you with twenty strings in a transcript and no artifact your CI or your teammates can run. Twenty endpoints in a collection leave you with a suite.
I asked the agent that helps me to maintain this server to explain how its experience with Bruno had been without the MCP server, and whether it could simply have tested all my APIs with curls instead. This is what it told me:
Curl, yes β for one call. Not for a suite. Nothing carries between calls, so I re-derive the auth, re-escape the body, and re-read every response to decide whether it passed. Do that across forty endpoints and most of what I spend goes on rediscovery, not testing.
Writing the collection files myself was worse, and not in the way you would expect. From memory I get the shape of a
.brufile right and the details wrong β and Bruno never complains. It reads the keys it recognises and ignores the rest. A single-linetags: smokelooks tagged and means untagged to the runner. Write a tags list the obvious way and it lands on disk one character per line. This server once wrote.ymlvariables and assertions under top-level keys Bruno has never read: the files looked complete, the runner saw an empty request. Its own unit tests passed, because they mocked the serializer and asserted the broken bytes.The format also moves. Bruno relocated variables into
runtimeand added a second dialect. My weights are older than that. This server imports@usebruno/lang, Bruno's own grammar package, and tracks its version β so the bytes come from Bruno's source rather than from what I happen to remember.And every rewrite deletes what the writer does not model. If I edit these files free-hand, I regenerate the whole file from my head, and any feature I did not know about is silently gone. That is the failure mode you never see, because the run still passes β it just tests nothing.
modify_request touches the fields you passed and leaves the rest of the file aloneread_request returns structured JSON, the same shape for both formatsbru binary neededThis is the part that is hard to copy, so it is worth being precise about what it means.
The server does not wrap the bru binary β it implements the request pipeline itself, which is what makes in-memory secrets, wire-level tests and mid-run hooks possible. That freedom is also the risk: an independent implementation is free to be subtly, silently different from the tool your team actually uses. Two mechanisms hold it in place.
The rules are ported, not inferred. Redirect caps, timeout resolution, body-mode content types, variable interpolation order, selected defaults, URL encoding β each is read out of Bruno's own source (bruno-cli, bruno-filestore, bruno-lang, @usebruno/common, which this server also depends on directly) and mirrored, including the parts that look like bugs. Where the two dialects disagree with each other, each is mirrored on its own terms rather than unified into something neither Bruno reader would produce.
A drift gate proves it. Every file this server writes is parsed back with Bruno's own reader, per dialect, in the test suite. Asserting our bytes against our own expectations can only prove we are self-consistent; asserting them against the reader that Bruno itself uses is the only thing that catches the case where our output stops being Bruno's input. It has caught real ones β a file body that parsed cleanly and would have been sent with no body at all, for instance.
The claim, then: run behaviour matches bru run, and every divergence found so far is closed. What keeps it closed is a test rather than a promise. Find one anyway and it is a bug worth an issue.
One collection, three consumers: your agent, your CI, and your team's Bruno GUI.
Both Bruno formats work and the server detects which one you have: .yml (opencollection) and .bru (legacy).
Requires Node.js >= 22. CI tests 22.x and 24.x.
There are several, they do genuinely different jobs, and the honest answer is not always this one. Every row below was read out of that project's own README or source, August 2026.
| Server | What it is | Writes | Reads | Runs | .bru / .yml | Needs bru | Tools |
|---|---|---|---|---|---|---|---|
| this one | Authors, reads and runs collections | Create + partial-merge edit | Structured JSON | Yes, own pipeline | both | no | 18 |
@dmpv/bruno-mcp | Read-only index and search over a collection | no | Ranked search, sanitised contracts, stored examples | no | both | no | 8 |
| hungthai1401/bruno-mcp | Runs a collection | no | no | Yes, via the CLI | .bru | yes | run only |
| jcr82/bruno-mcp-server | Runs and inspects collections, with report files | no | Yes | Yes, via the CLI | .bru | yes | 9 |
| djkz/bruno-api-mcp | Turns each request into its own MCP tool | no | Exposes them as tools | One at a time | .bru | no | one per request |
| macarthy/bruno-mcp | Generates collection files β the project this forked from, inactive since Jul 2025 | Create only | no | no | .bru | n/a | 8 |
Pick one of the others if: you want JUnit XML or HTML report files for a CI dashboard (jcr82 β this server returns JSON results only); you want an agent to understand a large existing collection without any risk of writing to it, and search it by intent (dmpv, first published July 2026 and at 0.x β new, and interesting); you already have the bru CLI in your image and only ever need "run this collection" (hungthai1401); or you want the agent to call your API through your existing requests as if each were a native tool (djkz).
Pick this one if: you want the agent to write the collection and not just read or run it, you are on .yml opencollection format, you need the run to happen without installing the Bruno CLI, or you care that what lands in your repo is byte-comparable to what the Bruno app writes.
On the fork parent specifically, since this project owes it its existence: macarthy/bruno-mcp registers eight tools β create_collection, create_request, create_environment, create_crud_requests, create_test_suite, add_test_script, list_collections, get_collection_stats. It writes .bru files and does not read a request back, run anything, or expose an edit tool; a updateRequest helper exists in its src/bruno/request.ts but no MCP tool reaches it.
Authoring
workspace.ymlread_request and read_environment return structured JSON, identical for .bru and .yml, so an agent can inspect before it editsmodify_request changes only the fields you pass and leaves the rest of the file alone.bru (legacy) and .yml (opencollection), auto-detected; .yaml is read and flaggedform-data with per-part Content-Type and multi-file fieldsRunning
bru.setVar()/bru.getVar() across requests, and captureVariables to read the values back outawait, bru.sleep(ms), setTimeout/setInterval inside the sandboxinherit from the collection or folderSafety
Nothing to install. Point your client at npx and it fetches the published package on first run:
That is the whole install, and it is what the client configs below use. The package ships with provenance, so npm can show you which commit and workflow built the tarball you are running.
Pinned instead, if you would rather not resolve a version at startup:
which puts a bruno-mcp executable in node_modules/.bin/ and the server itself at node_modules/@ostico/bruno-mcp/dist/index.js.
From source, for development or to run a branch:
Node.js >= 22 either way.
Any MCP client works. This is a plain stdio MCP server with no client-specific code: whatever your client calls it, point it at
Claude Code takes it as one line:
Claude Desktop, Claude Code, Cursor, Codex CLI, opencode, Windsurf, Zed, Cline, Continue, LM Studio, Gemini CLI, MCP Inspector, your own SDK client β all the same server. Nothing below is a compatibility list; it is just where each client keeps its config.
Most clients use the same JSON shape:
Running a clone, or a pinned install, is the same config with "command": "node" and "args": ["/absolute/path/to/dist/index.js"].
| Client | Where it goes |
|---|---|
| Claude Desktop | macOS ~/Library/Application Support/Claude/claude_desktop_config.json Β· Windows %APPDATA%/Claude/claude_desktop_config.json Β· Linux ~/.config/Claude/claude_desktop_config.json |
| Claude Code | claude mcp add, or .mcp.json in the project |
| Cursor | .cursor/mcp.json in the project, or the global one |
| Codex CLI | ~/.codex/config.toml, under an [mcp_servers.bruno-mcp] table (TOML, same fields) |
| opencode | opencode.json, under mcp as a local server (its own schema) |
| Others | Whatever that client documents β the command and args above are all it needs |
Config schemas are the client's, not this server's, and they move. If a client's format differs from the JSON above, follow the client's docs; only command and args matter here.
See INTEGRATION.md for worked examples, Docker, and troubleshooting.
18 tools. File paths are absolute, or relative to the collection.
| Tool | What it does |
|---|---|
create_collection | New collection. format: "yaml" (default) or "bru" |
list_collections | Find collections from Bruno's workspace.yml |
get_collection_stats | Counts by method, folders, environments, request list |
create_request | Write a request: method, url, headers, query, body, auth, scripts, settings |
modify_request | Partial-merge edit β only the fields you pass change |
read_request | Read one request back as JSON, same shape for .bru and .yml |
list_requests | Every request file in the collection, as absolute paths |
delete_request | Delete a request file. Needs confirm: true |
create_crud_requests | Five requests for an entity: List, Get, Create, Update, Delete |
create_test_suite | Several related requests, with optional ordering dependencies |
add_test_script | Attach a script to an existing request (appends by default) |
remove_script | Remove one script, keep the request |
create_environment | New environment file. Refuses to overwrite unless overwrite: true |
read_environment | Variables with their disabled/secret flags. Omit name to list environments |
update_environment | Replace or merge an environment's variables |
set_environment_variable | Add or change one variable |
remove_environment_variable | Delete one variable |
run_collection | Execute requests, run their tests, return results |
read_request returns method, url, headers, query and path params, body, auth mode, scripts, assertions, vars, settings and docs β identical shape for both formats, so the on-disk format stays invisible. Its notes array names anything the file declares that the runner will not act on.
Use it before modify_request to see the current state, and after create_request to confirm what was written.
read_environment returns each variable with its value. Secrets come back by name only β Bruno stores no value for a secret in either format, so there is none to return.
create_request and modify_request take the same shape. modify_request merges: fields you omit are left alone.
Notable options:
body.type β json, text, xml, sparql, graphql, form-urlencoded, form-data, file, binary, nonebody.type: "form-data" β multipart uploads, per-part contentType, multi-file fieldsauth.type β bearer, basic, api-key, digest, oauth2, inherit, nonescripts β inline pre-request, post-response, tests (no separate add_test_script call needed)settings.timeout β script and request timeout in msmodify_request replaces a script of the same type by default, so repeating a call is idempotent. Pass scriptMode: "append" to concatenate. add_test_script appends by default, being an add.
In .yml collections post-response and tests share Bruno's single after-response slot, so replacing either overwrites both.
| Parameter | Meaning |
|---|---|
collectionPath | Collection, or a subfolder of one |
requests | Ordered list of request files and/or directories. Omit to run everything. [] runs nothing |
groups | Run the collection as several isolated groups β see below. Cannot be combined with requests |
environment | Environment name, loaded from environments/<name>.yml |
collectionRoot | The collection collectionPath belongs to, when running a subfolder. Must be that path or an ancestor |
variables | {name: value} for this run only. Never written to disk β the correct way to pass a secret |
captureVariables | Names of bru.setVar variables whose values you want back |
parallel | Run the groups concurrently. Default false |
maxConcurrency | Ceiling on requests in flight. Omit to derive one from the machine; 0 lifts it |
cookieJar | Keep cookies across the run so a login carries forward. Default true |
includeResponseBody | Include response bodies. Default true |
maxResponseBodyBytes | Truncate bodies past this size. Default 10240 |
report | Also write the run to disk β see Report files |
A directory in requests expands to the requests under it, ordered by seq within each folder, subfolders first, ties broken by filename. Duplicates are honoured: naming a request twice runs it twice.
Nothing stops a run early. A request that fails, a file that will not parse, a name that matches nothing β each is reported and the run continues.
A group is an isolated run inside one call. It owns its request list, environment, variables, parallel flag, variable store, cookie jar and OAuth2 tokens. Nothing crosses from one group to another, in either direction, at any parallel setting.
The same requests as two users, with no chance of one login's token or session cookie reaching the other:
parallel: true runs the two groups against each other. Each group's own requests stay serial, which is what you want when orders depends on the login before it.
One suite against two environments:
Group fields: name, requests, environment, variables, parallel.
requests to run the whole collection under that group's identity. An empty [] runs nothing.environment replaces the run-level one; variables merge over the run-level ones, group winning.parallel on a group to run its own requests concurrently. They share that group's store, so they can genuinely contend on a bru.setVar β the point when reproducing a race. Give maxConcurrency at least as many slots as racers, or the cap serialises them quietly.Results are group-shaped. There is no top-level results array, not even when you passed no groups β that case is one group, and flattening it would make every caller check which way they had called.
Each group carries its own summary, results, missingRequests, capturedVariableNames, capturedVariables and warnings. The top-level summary covers the whole run.
response_headers needs no flag and no test script. Credential-named values are masked, and set-cookie is a list β one entry per cookie, because a comma-joined one cannot be split back β whose entries keep every attribute with only the cookie value withheld. Checking HttpOnly, Secure, SameSite or Strict-Transport-Security is therefore a single call. includeResponseBody: false does not suppress them: that flag is about a body's size.
A WebSocket result carries response_headers as well, holding the handshake response β the 101 is the only place a session cookie or an agreed sec-websocket-protocol appears for that transport, since frames have no headers. A gRPC result reports its metadata under its own grpc detail instead.
A group that could not start at all reports error instead of results and counts as one failure β otherwise a run with a dead group would read green.
Run-level fields: parseErrors and parseFailures name files that could not be parsed, warnings collects anything else worth seeing.
Scripts run in a V8 context inside a forked process (see Security). Both kinds are async functions, so top-level await works.
Tests and post-response get test(), expect(), res and bru:
| API | Notes |
|---|---|
test(name, fn) | Wraps assertions. Required for one to be reported |
expect(v) | Chai-style: .to.equal, .include/.contain, .match, .have.property/.lengthOf/.keys, .be.above/.below/.least/.most/.oneOf, .throw, and .to.not.* for any of them |
res.getStatus() res.getStatusText() | |
res.getHeader(name) res.getHeaders() | Header lookup is case-insensitive |
res.getSetCookies() | Cookies the response set |
res.getBody() | Already parsed when the media type's subtype is json or ends +json |
res.getResponseTime() | ms |
res(path, ...fns) | Bruno's query language over the body: res("data.pets..name") descends to every name, [0] indexes, [?] filters or maps with a callback. Also valid as an assertion's left-hand side, where the syntax could not appear bare |
bru.setVar(name, v) bru.getVar(name) | Pass values to later requests as {{name}} |
bru.sleep(ms) | Also setTimeout/setInterval and their clear* |
Pre-request scripts get req and bru instead β there is no response yet. Mutating req changes what is sent: req.getUrl(), req.setUrl(), req.getMethod(), req.getHeader(), req.setHeader(), req.getHeaders(), req.getBody(), req.setBody().
Wrap assertions in test(). A bare passing expect() is never recorded, so the run reports "tests": [] while the request counts as passed β green with nothing asserted. The runner spots this and says so in that result's warnings. A bare failing assertion is not silent: it throws and is reported as a script error.
Do not JSON.parse(res.getBody()). It is already an object whenever the media type's subtype is json or carries the +json suffix β application/json, text/json, application/vnd.api+json β so parsing again throws SyntaxError: "[object Object]" is not valid JSON. Read fields directly. If an endpoint may return either, branch: typeof b === "string" ? JSON.parse(b) : b.
Sleeping counts against the script timeout β settings.timeout, 5000 ms when unset. await bru.sleep(10000) under the default reports a timeout instead of waiting.
An environment is environments/<name>.yml in the collection:
The tools take variables as a flat object ({"baseUrl": "..."}) and write that array for you.
{{name}} is substituted into urls, headers, bodies and auth. Disabled variables are skipped; unresolved ones are left as written and named in the run's warnings.
Precedence, lowest first: environment file β run variables β a request's own vars β bru.setVar during the run. This matches Bruno's --env-var behaviour.
A variable may be built out of others: base_url: "https://{{host}}/{{stage}}" resolves the way it does under bru run, using Bruno's own interpolate. One exception, deliberate: a value captured from a response β by bru.setVar or a post-response vars block β is inserted as text and never scanned again, so a response echoing key={{api_key}} cannot make the next request send your key.
Generators. {{$guid}}, {{$timestamp}}, {{$randomEmail}} and the rest of Bruno's ~120 dynamic variables work in urls, headers, query params, bodies and auth. They are not variables: nothing declares them, each occurrence produces its own value, and none is reported as unresolved. A keyword no generator answers to β {{$gid}} β is left as written and named in the warnings, so a typo still surfaces. In a JSON body or a GraphQL variables block the generated value is escaped, so a generator that emits a newline ({{$randomLoremParagraphs}}) leaves the document parseable.
Secrets: neither Bruno format stores a secret's value β only its name. So pass secrets as run variables, which stay in memory and are never written to a file.
An environment name is a name, not a path. Anything containing a separator is refused.
run_collection returns its results as JSON, which is what an agent reads. The two other consumers of a test run read files, so report writes them:
Name either format or both. The result then carries reports, one entry per file written, with its absolute path and its size in bytes.
Paths are confined to the collection. A path resolving outside it is refused and the reason becomes a run warning; the run itself still succeeds, because the results are what was asked for and the file is a by-product. Copy the file afterwards if your pipeline collects reports from somewhere else β writing wherever a caller points is a much larger authorization than running its requests. Missing parent directories inside the collection are created, and an existing report is overwritten.
The JUnit XML follows bru run --reporter-junit: one <testsuite> per request, one <testcase> per assertion or test, and a request that errored reported as a suite error. Four things it does differently, each because the alternative is a report that reads greener than the run:
requestsWithoutTests counter exists to expose.hostname attribute. Upstream writes the machine name into the file; these reports are meant to be committed.The HTML report is Bruno's own, rendered by @usebruno/common, with execution groups as its iterations β a two-identity run reads as two sections. Two things to know: the page embeds the run's data but loads Vue and naive-ui from unpkg.com, so it needs network access when opened and shows nothing offline; and its request pane is empty, because a result does not retain the request as it was sent. Assertions and script tests share one list for the same reason β a result does not tell them apart.
A report holds what the results hold, on disk: response bodies included, response headers masked exactly as they are in the JSON.
| Marker file in the collection | Format |
|---|---|
opencollection.yml | YAML β checked first |
bruno.json | BRU (legacy) |
| neither | YAML |
New collections are YAML unless you pass format: "bru".
.yaml request files are read as YAML, exactly like .yml, because other Bruno-adjacent tooling writes them. But Bruno's own app and bru run do not recognise the extension, so every .yaml file read is named in the run's warnings β a silent pass would be a green run of a request Bruno cannot see. Rename to .yml to clear it. Nothing this server writes uses .yaml.
A collection may hold gRPC and WebSocket requests alongside HTTP ones. This server reads, preserves and reports them: read_request returns the kind, the target, the method and proto path for gRPC, its metadata block, and how many messages are stored; list_requests lists them; and editing any request in the collection no longer destroys them. Before this, both formats dropped the target block, the credentials and every stored message, so one modify_request on an unrelated request rewrote the file without them.
run_collection runs both. A gRPC request performs one unary call against the service its .proto declares; a WebSocket request opens the socket, sends the frames the file stores and records what comes back until a bound is reached. Each reports its own detail: a gRPC result carries the gRPC status code, the details string and redacted trailing metadata, and a WebSocket result carries the transcript, the stop_reason that ended it and whether it was truncated. The gRPC code lives in its own field and is never mapped onto the result's status, because gRPC's OK is 0 and 0 is this API's refusal sentinel β a successful call and a security refusal would otherwise be indistinguishable in the field read first.
A WebSocket session has no natural end, so it is bounded, and every bound is settable per run under run_collection's websocket argument:
| Bound | Default | What it does |
|---|---|---|
maxMessages | 50 | Inbound frames recorded before stopping |
maxDurationMs | 5000 | Wall-clock ceiling for one session |
idleTimeoutMs | 1500 | Silence that ends a session; 0 waits for the ceiling |
sendIntervalMs | 0 | Gap between the messages a request sends; 0 sends them in one tick |
includePayloads | false | Record frame contents, not just size and timing |
maxFrameBytes | 65536 | Per-frame ceiling on recorded payload |
maxTranscriptBytes | 1048576 | Cumulative ceiling, counted from wire size |
engineIoKeepalive | false | Answer an engine.io 2 with a 3 |
The wall-clock ceiling is a safety bound rather than a schedule, so idleTimeoutMs is what usually ends a session: once nothing has arrived for 1500 ms it stops and reports stop_reason: "idle", which is not counted as truncation because no cap bit and the ceiling went unspent. The clock is armed by the first frame, not at connect, so a listen-only request that authors no messages still waits out maxDurationMs for a peer that may yet speak. Set it to 0 for a protocol whose gaps are longer than its answers.
sendIntervalMs is what makes a send-wait-send protocol reachable. At the default of 0 a request's messages all leave in one tick, so every reply arrives after the last of them and the exchange has no order to assert on; set a gap and the transcript carries each answer between the sends it belongs to, at the offset it actually arrived. Two consequences worth knowing. maxDurationMs has to cover the whole paced sequence β a session stopped part way through names the messages that never went out, by their authored name, rather than leaving a transcript one send short to be read as a peer that stopped answering. And the idle bound is not armed while the sequence is still going out, so a sendIntervalMs longer than idleTimeoutMs is safe: the gap a request deliberately leaves between its own messages is not the peer's silence.
A subprotocol is authored as a Sec-WebSocket-Protocol header on the request, comma-separated for more than one, and is negotiated at the handshake; the one the server agreed to comes back in that result's response_headers. There is no separate field for it, here or in Bruno. Writing the header used to be worse than leaving it out: the library validates the server's answer against the list it was given at the connection, so a server that did exactly what the header asked for had its handshake refused for offering a subprotocol nobody requested. An authored Sec-WebSocket-Version is honoured the same way, for the same reason.
Each transcript entry says what kind of frame it was β text, binary, ping, pong or close β carries the authored title of a message the session sent, and, on a close frame, the close_code the peer gave, with its reason as that entry's payload: 1000 is an ordinary goodbye, 1006 a peer that vanished without one, 1008 a refusal, 1011 a server error. Control frames do not count toward maxMessages, or a peer that pings once a second would end a session by itself and report count for one that received no answer. A binary frame's payload is base64 and bytes is the true wire size for every kind. A post-response script sees the same fields, because the transcript is what res.body is on this transport.
includePayloads is off by default as a security property, not a preference: outbound frames are recorded after {{var}} substitution, so recording them by default would write every secret passed in variables into a result that is returned by default. engineIoKeepalive is off for a related reason β it puts a frame on the wire the request did not author β and even when on it replies only after an OPEN frame has actually been seen.
Authoring them is still not supported. modify_request refuses an edit naming an HTTP-shaped field β method, url, headers, body, auth, query, path params β on a kind that has no HTTP block, and leaves the file byte-unchanged; name and sequence still apply. create_request does not author these kinds: copy a file Bruno wrote.
Both transports are loaded lazily, and that is enforced rather than asserted: a test records every module the real server resolves and fails if an HTTP-only run names @grpc/grpc-js or ws. Measured, an HTTP-only run loads undici and neither of them.
Two things are refused rather than guessed at. A file whose declared type and target block disagree (type: grpc with an http: block) is a parse error naming both, because the type decides what a reader reports while the block decides what a runner contacts. And a .bru request whose target url is empty is refused on write, because the format drops such a block while keeping the credentials beside it β the result would look authored and go nowhere.
What is deliberately not built, and why β streaming, reflection, proxy support for these transports, held-open sessions, and a socket.io or MQTT block β is written up in docs/superpowers/specs/2026-08-06-grpc-websocket-design.md, together with a recipe for reaching a socket.io server as a plain ws request.
SSRF. Every outbound URL, including each redirect hop, is resolved and checked. Private, loopback, link-local and otherwise reserved addresses are refused, and the approved addresses are pinned for the request so the name cannot resolve to something else in between. A refusal is reported per request as an SSRF blocked error with status 0.
Scripts run in a V8 context inside a forked, disposable process. The child gets a scrubbed environment, so a script that escapes the context still cannot read the server's secrets β they are not in its address space. Its stdout is piped, never inherited, so it cannot write onto the MCP JSON-RPC stream. A runaway script is bounded by SIGKILL on the child, which the in-context timeout alone cannot guarantee. This is defence in depth via an OS process, not a jail: it does not prevent code from running in the child, it makes running there worthless.
Paths. Request references must stay inside the collection. collectionRoot must contain the collection path. Environment names may not contain separators.
File uploads. A form-data file part names a path on the server's disk, so it is confined: readable only under the collection root, the user's home directory, the OS temp dir, or a directory the operator added. On top of that, any path component starting with . is refused β so ~/.ssh/id_rsa, .env and .aws stay unreadable even though home is allowed. Relative paths resolve against the collection root.
Operator escape hatches, all off by default:
| Variable | Effect |
|---|---|
BRUNO_SSRF_ALLOWLIST | Comma-separated exact hostnames, IP literals and/or CIDR ranges allowed despite being private. Read once at startup and never influenced by tool arguments; wildcards are rejected |
BRUNO_UPLOAD_DIRS | Extra directories uploads may read from |
BRUNO_PROXY_HOSTS | Hosts allowed to use a collection's proxy |
BRUNO_INSECURE_TLS_HOSTS | Hosts allowed to skip certificate verification |
BRUNO_DNS_TIMEOUT_MS | DNS resolution timeout |
BRUNO_WORKSPACE_PATH | Where to find Bruno's workspace.yml |
This constrains what run_collection will fetch. An agent with shell access can reach the network anyway, so treat it as one layer, not a boundary.
bru) installed?No. The request pipeline is implemented here β variables, auth, cookies, redirects, assertions, scripts, dependency ordering β so nothing shells out to bru and nothing needs the binary on PATH. That is also why the parity work above exists: an independent implementation has to be held to the original deliberately.
.yml opencollection files, or only .bru?Both, and it detects which one a collection uses rather than asking you. New collections default to .yml; create_collection takes format: "bru" if you want the legacy dialect. Where the two formats genuinely disagree β and they do β each is written the way Bruno's own writer for that dialect writes it.
The collection it produces is a normal Bruno collection, so CI runs it with bru run exactly as if a human had authored it in the app. The MCP server itself is for the authoring and debugging loop, where an agent is in the room. If you want JUnit XML or HTML report files out of an MCP server instead, that is jcr82/bruno-mcp-server β see the comparison above.
Only the fields you asked to change. modify_request is a partial merge, a key this server does not model is carried back out where the format can carry it β .yml throughout, and .bru wherever its grammar has a dictionary block to hold it β and every write is verified against Bruno's own reader in the test suite. Deletes need an explicit confirm: true.
Any of them β this is a plain stdio server with no client-specific code. Claude Code, Claude Desktop, Cursor, Windsurf, VS Code, Codex CLI, opencode, Zed, Cline, Continue, LM Studio, Gemini CLI, the MCP Inspector, or your own SDK client. See Connect a client for where each one keeps its config.
Secret environment variables stay in memory for the run and are never written to a file β neither dialect stores a secret's value on disk, which is Bruno's design, not a limitation added here. Credentials are redacted out of the results returned to the agent, including one placed in a query parameter. Scripts run in a forked V8 sandbox with a scrubbed environment. See Security.
bruno-mcp?It started as a fork of macarthy/bruno-mcp, which has been inactive since July 2025 and generated collection files without running them. Everything above β the runner, the readers, both dialects, the parity gate, the sandbox β was built after the fork.
No. Bruno is a product of usebruno and its name and trademarks belong to them. This is a community project that reads Bruno's open-source packages to stay compatible with them; it is not endorsed by or affiliated with usebruno.
requestPath and folder are gone. Both become requests, an ordered array of files and/or directories.results array. Read result.groups[0].results.parallel: true used to isolate each folder. It does not any more: with no groups, the whole selection is one group sharing one store and one cookie jar. Name the folders as separate groups to keep the old behaviour.seq no longer constrains execution. It is the default order and the reporting order only.requests: [] runs nothing. It used to run the whole collection.BruGenerator, generateBruFile, createBasicBruFile.Full detail in CHANGELOG.md.
Use npm, not yarn β the lockfile is npm's and CI runs npm ci.
MIT
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/bruno-mcp-studio)<a href="https://allmcps.com/mcp/bruno-mcp-studio"><img src="https://allmcps.com/api/badge/bruno-mcp-studio?style=directory" alt="Bruno MCP Studio on AllMCPs" /></a>