B
Bun
Run Bun scripts, tests and package installs.
·No reviews yet
Share:
About
Auto-generated
Bun is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Bun.
- What is the Bun MCP?
- The Bun MCP allows you to execute Bun scripts, run tests, and manage package installations directly through a Model Context Protocol client. It integrates Bun, a fast JavaScript runtime, into your development workflow for seamless operation.
- How can I install the Bun MCP in a client like Cline?
- To use the Bun MCP with Cline, ensure Cline is configured to recognize the MCP protocol. Then, activate the 'bun' MCP. Specific installation steps may vary based on your Cline version and operating system.
- Does the Bun MCP require any authentication credentials?
- No, the Bun MCP does not require an API key, OAuth, or any other credentials for its operation. It functions without additional authentication, relying on the local Bun installation.
- What are the primary capabilities of the Bun MCP?
- The Bun MCP enables script execution, test running, and package management. It leverages Bun's performance for these tasks, offering a streamlined way to interact with your JavaScript projects.
- What are the licensing implications for using the Bun MCP?
- The Bun MCP itself is under a community-provided license, as it interfaces with the open-source Bun runtime. The underlying Bun runtime is also open-source, so its usage falls under its respective license.
Install Bun
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"bun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bun"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"bun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bun"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"bun": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bun"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.