{"id":26937647,"url":"https://github.com/hungthai1401/bruno-mcp","last_synced_at":"2025-04-06T07:53:07.895Z","repository":{"id":285353022,"uuid":"957828047","full_name":"hungthai1401/bruno-mcp","owner":"hungthai1401","description":"MCP Server for running Bruno Collections","archived":false,"fork":false,"pushed_at":"2025-03-31T07:57:59.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-31T08:32:02.214Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hungthai1401.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-31T07:45:28.000Z","updated_at":"2025-03-31T07:58:04.000Z","dependencies_parsed_at":"2025-03-31T08:42:15.098Z","dependency_job_id":null,"html_url":"https://github.com/hungthai1401/bruno-mcp","commit_stats":null,"previous_names":["hungthai1401/bruno-mcp"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hungthai1401%2Fbruno-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hungthai1401%2Fbruno-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hungthai1401%2Fbruno-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hungthai1401%2Fbruno-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hungthai1401","download_url":"https://codeload.github.com/hungthai1401/bruno-mcp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247451629,"owners_count":20940946,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-02T13:15:25.743Z","updated_at":"2025-04-06T07:53:07.857Z","avatar_url":"https://github.com/hungthai1401.png","language":"JavaScript","funding_links":[],"categories":["Developer Tools","API Integration MCP Servers","پیاده‌سازی‌های سرور","JavaScript","Table of Contents","APIs and HTTP Requests","カテゴリ","🛠️ DevOps Tooling","🌐 Web Development"],"sub_categories":["Testing \u0026 QA","💻 \u003ca name=\"developer-tools\"\u003e\u003c/a\u003eابزارهای توسعه‌دهنده","Other Tools and Integrations","🛠️ \u003ca name=\"developer-tools\"\u003e\u003c/a\u003e開発ツール"],"readme":"# Bruno MCP Server\n[![smithery badge](https://smithery.ai/badge/@hungthai1401/bruno-mcp)](https://smithery.ai/server/@hungthai1401/bruno-mcp)\n\nAn MCP (Model Context Protocol) server that enables running Bruno collections. This server allows LLMs to execute API tests using Bruno and get detailed results through a standardized interface.\n\n## Features\n\n* Run Bruno collections using the Bruno CLI\n* Support for environment files\n* Support for environment variables\n* Detailed test results including:\n  * Overall success/failure status\n  * Test summary (total, passed, failed)\n  * Detailed failure information\n  * Execution timings\n\n## Installation\n\n### Installing via Smithery\n\nTo install Bruno MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@hungthai1401/bruno-mcp):\n\n```bash\nnpx -y @smithery/cli install @hungthai1401/bruno-mcp --client claude\n```\n\n### Manual Installation\n```bash\n# Install dependencies\nnpm install\n\n# Build the project\nnpm run build\n```\n\n## Configuration\n\nAdd the server to your Claude desktop configuration file at `~/Library/Application Support/Claude/claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"bruno-runner\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"bruno-mcp\"],\n    }\n  }\n}\n```\n\n## Available Tools\n\n### run-collection\n\nRuns a Bruno collection and returns the test results.\n\n**Parameters:**\n\n* `collection` (required): Path to the Bruno collection\n* `environment` (optional): Path to environment file\n* `variables` (optional): Environment variables as key-value pairs\n\n**Example Response:**\n\n```json\n{\n  \"success\": true,\n  \"summary\": {\n    \"total\": 5,\n    \"failed\": 0,\n    \"passed\": 5\n  },\n  \"failures\": [],\n  \"timings\": {\n    \"started\": \"2024-03-14T10:00:00.000Z\",\n    \"completed\": \"2024-03-14T10:00:01.000Z\",\n    \"duration\": 1000\n  }\n}\n```\n\n### Example Usage in Claude\n\nYou can use the server in Claude by asking it to run a Bruno collection:\n\n\"Run the Bruno collection at /path/to/collection.bru and tell me if all tests passed\"\n\nClaude will:\n1. Use the run-collection tool\n2. Analyze the test results\n3. Provide a human-friendly summary of the execution\n\n## Development\n\n### Project Structure\n\n```\nsrc/\n  ├── index.ts           # Entry point\n  ├── server.ts          # MCP Server implementation\n  ├── runner.ts          # Bruno runner implementation\n  └── types.ts           # Type definitions\n```\n\n### Running Tests\n\n```bash\n# Run tests\nnpm test\n\n# Run tests with coverage\nnpm test:coverage\n```\n\n### Building\n\n```bash\n# Build the project\nnpm run build\n\n# Clean build artifacts\nnpm run clean\n```\n\n## License\n\nMIT \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhungthai1401%2Fbruno-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhungthai1401%2Fbruno-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhungthai1401%2Fbruno-mcp/lists"}