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 with npx
You can boot the server directly via npx:
npx bruno-mcp-server --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"
]
}
}
}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.
Latest Blog Posts
- 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