---
title: Platform-Specific Issues
description: Windows and macOS specific troubleshooting for Docfork MCP.
---
import { Callout } from "fumadocs-ui/components/callout";
## Platform-Specific Issues
### Windows Issues
#### Request Timeout Errors
On Windows, some users may encounter request timeout errors with the default configuration. Try using the full path to Node.js and the installed package:
```json
{
"mcpServers": {
"docfork": {
"command": "C:\\Program Files\\nodejs\\node.exe",
"args": [
"C:\\Users\\yourname\\AppData\\Roaming\\npm\\node_modules\\docfork\\dist\\index.js",
"--transport",
"stdio"
]
}
}
}
```
Alternatively, use this configuration with `cmd`:
```json
{
"mcpServers": {
"docfork": {
"command": "cmd",
"args": ["/c", "npx", "-y", "docfork@latest"]
}
}
}
```
### macOS Issues
#### Request Timeout Errors
On macOS, some users may encounter the same request timeout errors. Use the full path to Node.js and the installed package:
```json
{
"mcpServers": {
"docfork": {
"command": "/Users/yourname/.nvm/versions/node/v22.14.0/bin/node",
"args": [
"/Users/yourname/.nvm/versions/node/v22.14.0/lib/node_modules/docfork/dist/index.js",
"--transport",
"stdio"
]
}
}
}
```
<Callout title="Note" type="info">
Replace `yourname` and the Node.js version (`v22.14.0`) with your actual username and installed
Node.js version.
</Callout>
<Callout title="Still stuck?" type="error">
If you can't resolve the issue, contact us at [support@docfork.com](mailto:support@docfork.com) or
raise a [GitHub issue](https://github.com/docfork/docs/issues).
</Callout>