Skip to content
Merged
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
24 changes: 24 additions & 0 deletions docs/user-guide/configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,28 @@ Datasource profiles.yml.
DATU_DBT_PROFILES=
```

#### MCP related configuration

##### Enable MCP Connectivity

Set the following environment variable to enable MCP connectivity in Datu:

```sh
DATU_ENABLE_MCP=true
```

##### MCP Servers Configuration
Define your MCP servers in a JSON config file (e.g. mcp_config.json):

```sh
{
"mcpServers": {
"sql_generator": {
"command": "python",
"args": ["-m", "datu.mcp.tools.sql_generator"],
"env": { "PYTHONPATH": "." }
}
}
}
```

5 changes: 5 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ nav:
- user-guide/configurations.md
- Deploy:
- Container service: user-guide/deploy/deploy_as_container_service.md
- MCP Connectivity:
- user-guide/MCP Connectivity/mcp_connectivity.md
- Contribute ❤️: https://github.com/Datuanalytics/datu-core/blob/main/CONTRIBUTING.md



- Architecture:
- Overview: architecture/README.md
- Contribute ❤️: https://github.com/Datuanalytics/datu-core/blob/main/CONTRIBUTING.md
Expand Down