---
title: Using Bun or Deno
description: Run Docfork MCP with Bun or Deno
---
Use these alternatives to run the local Docfork MCP server with other runtimes.
#### Bun
```json theme={null}
{
"mcpServers": {
"docfork": {
"command": "bunx",
"args": ["-y", "docfork", "--api-key", "YOUR_API_KEY"]
}
}
}
```
#### Deno
```json theme={null}
{
"mcpServers": {
"docfork": {
"command": "deno",
"args": ["run", "--allow-env=NO_DEPRECATION,TRACE_DEPRECATION", "--allow-net", "npm:docfork"]
}
}
}
```