Bruno MCP Server
Allows AI agents to discover, inspect, and run API requests stored in Bruno collections locally, using the Bruno CLI.
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., "@Bruno MCP Serverlist all API requests in the collection"
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.
Bruno MCP Server
A local-first, secure Model Context Protocol (MCP) server that enables AI coding assistants (like Cursor, Claude Desktop, and Aider) to discover, inspect, and run API requests in your Bruno collections entirely locally.

Key Features
Local-First & Private: Executes API calls locally on your machine using your own local Bruno files and environments. No credentials or source files are sent to a cloud service.
Universal Connection (MCP): Standardizes how AI coding agents query, analyze, and verify your back-end APIs.
Tolerant Parsing: Extracts metadata (URL, headers, body types, bearer tokens) from
.brufiles while preserving the exact raw contents.Process Sandbox: Executes requests by calling your project-local
@usebruno/clidirectly with no shell interpolation, protecting against command injection.
Related MCP server: Anytype MCP Server
Installation
Prerequisites
Node.js >= 20.0.0
A Bruno collection initialized in your workspace.
Running from source
The npm package name bruno-mcp-server is currently owned by another project. Clone this repository to ensure you run this implementation:
git clone https://github.com/kodlbegiko/bruno-mcp-server.git
cd bruno-mcp-server
npm ci
npm run build
node dist/index.js --project-path /absolute/path/to/your/bruno-collectionClient Configuration
1. Cursor
To configure the server in Cursor, open Settings -> Features -> MCP, click + Add New MCP Tool, and fill in the details:
Name:
brunoType:
stdioCommand:
node /absolute/path/to/bruno-mcp-server/dist/index.js --project-path /absolute/path/to/your/bruno-collection
2. Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"bruno": {
"command": "node",
"args": [
"/absolute/path/to/bruno-mcp-server/dist/index.js",
"--project-path",
"/absolute/path/to/your/bruno-collection"
]
}
}
}Try the Self-Healing Demo
To see the AI agent automatically debug and heal code using this MCP server:
Start the Mock Server:
node fixtures/demo/server.jsIntroduce a Bug: Open
fixtures/demo/server.jsand changepayload.emailtopayload.mailin the registration handler.Ask the AI: In Cursor or Claude, ask:
"I just modified the register endpoint in fixtures/demo/server.js. Please use the Bruno MCP tool to run the 'Register' request in fixtures/demo/ to check if it passes."
Watch it Heal: The AI agent will call the MCP tool, detect the
400failure, inspectserver.js, fix the typo back topayload.email, re-run the request, and confirm the test passes!
Tool Reference
1. list_bruno_requests
Discovers and lists all .bru request files inside the collection root.
Inputs:
project_path(string, optional)
Output:
A JSON array listing request names, paths, and detected HTTP methods.
2. get_bruno_request_detail
Extracts structured request details (URL, headers, body, auth parameters) and raw content.
Inputs:
request_name(string, required) - The name (relative path without extension, or unique basename) of the request.project_path(string, optional)
3. run_bruno_request
Runs a request locally through the Bruno CLI and captures status and outputs.
Inputs:
request_name(string, required)project_path(string, optional)env(string, optional) - Target environment defined in your collection.env_vars(object, optional) - Key-value overrides for environment variables.
Development & Contribution
See CONTRIBUTING.md for local setup, testing, and contribution protocols.
License
MIT License. See LICENSE for details.
This server cannot be installed
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 Servers
- Alicense-qualityDmaintenanceExposes Bruno API collections as Model Context Protocol (MCP) tools, allowing AI agents and MCP clients to interact with your API collections.Last updated473MIT
- FlicenseAqualityDmaintenanceEnables AI assistants to interact with Anytype data through the local API, allowing search, creation, modification, and export of objects, spaces, and lists.Last updated1824

RequestBin MCP Serverofficial
AlicenseAqualityCmaintenanceEnables AI coding agents to create webhook bins, inspect and replay HTTP requests, and stand up mock API endpoints directly from the editor.Last updated136MIT
blackmount-mcpofficial
Alicense-qualityAmaintenanceEnables AI assistants to access and search local browser history, bookmarks, open tabs, and downloads for personalized context.Last updatedMIT
Related MCP Connectors
Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…
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/kodlbegiko/bruno-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server