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
4 changes: 2 additions & 2 deletions docs/client_guide/Flowise_with_teradata_mcp_Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ docker build --build-arg ENABLE_FS_MODULE=true \
3. **Build Flowise Container Image** from https://github.com/FlowiseAI/Flowise, run below lines in cmd terminal.

```
git clone git clone https://github.com/FlowiseAI/Flowise.git
git clone https://github.com/FlowiseAI/Flowise.git
cd Flowise
docker build --no-cache -t flowise:latest .
```
Expand Down Expand Up @@ -114,7 +114,7 @@ docker compose up -d --remove-orphans

7. **Validate docker container status**
```
dokcer ps
docker ps
# teradata-mcp-server container logs
docker logs teradata-mcp-server -f
# Flowise Container logs
Expand Down
2 changes: 1 addition & 1 deletion src/teradata_mcp_server/tools/module_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ModuleLoader:
'sql_opt': 'teradata_mcp_server.tools.sql_opt',
'sec': 'teradata_mcp_server.tools.sec',
'tmpl': 'teradata_mcp_server.tools.tmpl',
'plot': 'teradata_mcp_server.tools.plot'
'plot': 'teradata_mcp_server.tools.plot',
'tdvs': 'teradata_mcp_server.tools.tdvs'
}

Expand Down