Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ This guide covers configuration options, environment variables, transport modes,
> MCP_HOST information
> Setting host to `127.0.0.1` (localhost) ensure that the Dashboard and the MCP server is only accessible locally
> Setting host to `0.0.0.0` make it so that the Dashboard and the MCP server is accessible from any IP address assigned to the machine
>
> Note: Host header validation (DNS rebinding protection) is only applied when `MCP_HOST` is a specific host (for example `localhost`, `127.0.0.1`, or `::1`). When binding to all interfaces (`0.0.0.0` or `::`), host validation is not applied; use other protections (auth, firewall, reverse proxy) if exposing the server.

## Transport Modes

Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,35 +43,35 @@
"generate-schema": "node scripts/generateSchema.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.3",
"axios": "^1.10.0",
"@modelcontextprotocol/sdk": "^1.25.2",
"axios": "^1.13.2",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"express": "^5.2.1",
"express-basic-auth": "^1.2.1",
"multer": "^2.0.1",
"openapi-client-axios": "^7.6.0",
"multer": "^2.0.2",
"openapi-client-axios": "^7.8.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@langchain/core": "^0.3.61",
"@langchain/langgraph": "^0.3.6",
"@langchain/openai": "^0.5.16",
"@types/express": "^4.17.23",
"@langchain/core": "^1.1.12",
"@langchain/langgraph": "^1.0.15",
"@langchain/openai": "^1.2.1",
"@types/express": "^5.0.6",
"@types/multer": "^2.0.0",
"@types/node": "^24.0.10",
"@types/supertest": "^6.0.3",
"axios-mock-adapter": "^2.1.0",
"eslint": "^9.30.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"langchain": "^0.3.29",
"langchain": "^1.2.7",
"prettier": "^3.6.2",
"shx": "^0.4.0",
"supertest": "^7.1.1",
"supertest": "^7.2.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vitest": "^3.2.4"
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
}
}
Loading