Skip to content

Commit 1d62a30

Browse files
committed
docs: adjusting documentation
1 parent 7920abe commit 1d62a30

File tree

5 files changed

+26
-11
lines changed

5 files changed

+26
-11
lines changed

examples/claude/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,15 @@ Copy the following configuration into the file. You can also download our [templ
3030
"-i",
3131
"-e", "MCP_TRANSPORT=stdio",
3232
"-e", "KOMODO_URL=https://your-komodo-server.com:9120",
33-
"-e", "KOMODO_USERNAME=your-username",
34-
"-e", "KOMODO_PASSWORD=your-password",
33+
"-e", "KOMODO_API_KEY=your-api-key",
34+
"-e", "KOMODO_API_SECRET=your-api-secret",
3535
"ghcr.io/mp-tool/komodo-mcp-server:latest"
3636
]
3737
}
3838
```
3939

40-
**Important:** Replace `KOMODO_URL`, `KOMODO_USERNAME`, and `KOMODO_PASSWORD` with your actual Komodo credentials.
40+
**Important:** Replace `KOMODO_URL`, `KOMODO_API_KEY`, and `KOMODO_API_SECRET` with your actual Komodo credentials.
41+
*Note: You can alternatively use `KOMODO_USERNAME` and `KOMODO_PASSWORD` if you prefer.*
4142

4243
### 3. Restart Claude
4344
Completely quit and restart Claude Desktop. You should now see in the tool's list, below the websearch toggle, the `Komodo MCP Server` and its available tools.

examples/claude/claude_desktop_config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"-i",
99
"-e", "MCP_TRANSPORT=stdio",
1010
"-e", "KOMODO_URL=https://komodo.example.com:9120",
11-
"-e", "KOMODO_USERNAME=username",
12-
"-e", "KOMODO_PASSWORD=password",
11+
"-e", "KOMODO_API_KEY=your-api-key",
12+
"-e", "KOMODO_API_SECRET=your-api-secret",
1313
"ghcr.io/mp-tool/komodo-mcp-server:latest"
1414
]
1515
}

examples/compose/.env.example

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@
1010
# - Docker network: http://komodo-core:9120
1111
KOMODO_URL=https://localhost:9120
1212

13-
# Komodo Authentication
13+
# Komodo API Key (Recommended)
14+
# Obtain this from your Komodo server configuration
15+
KOMODO_API_KEY=your-komodo-api-key
16+
KOMODO_API_SECRET=your-komodo-api-secret
17+
18+
# Komodo Authentication (Alternative)
1419
# Create a dedicated user in Komodo for the MCP server
1520
# Recommended: Create a dedecaded user with read-only or limited permissions
1621
KOMODO_USERNAME=mcp-user

examples/compose/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,14 @@ nano .env
2121
**Required settings:**
2222
```dotenv
2323
KOMODO_URL=https://your-komodo-server.com:9120
24-
KOMODO_USERNAME=your-username
25-
KOMODO_PASSWORD=your-password
24+
25+
# Option A: API Key (Recommended)
26+
KOMODO_API_KEY=your-api-key
27+
KOMODO_API_SECRET=your-api-secret
28+
29+
# Option B: Username/Password
30+
# KOMODO_USERNAME=your-username
31+
# KOMODO_PASSWORD=your-password
2632
```
2733

2834
### 3. Start Server

examples/compose/compose.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ services:
77
environment:
88
# Komodo Connection
99
KOMODO_URL: ${KOMODO_URL:-https://komodo.example.com:9120}
10-
KOMODO_USERNAME: ${KOMODO_USERNAME:-username}
11-
KOMODO_PASSWORD: ${KOMODO_PASSWORD:-password}
10+
KOMODO_API_KEY: ${KOMODO_API_KEY:-your-komodo-api-key}
11+
KOMODO_API_SECRET: ${KOMODO_API_SECRET:-your-komodo-api-secret}
12+
# Optional: Komodo Authentication
13+
# KOMODO_USERNAME: ${KOMODO_USERNAME:-username}
14+
# KOMODO_PASSWORD: ${KOMODO_PASSWORD:-password}
1215

1316
ports:
1417
- 3000:${MCP_PORT:-3000}
@@ -25,7 +28,7 @@ services:
2528

2629
# Health check
2730
healthcheck:
28-
test: ["CMD", "node", "-e", "process.exit(0)"]
31+
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
2932
interval: 30s
3033
timeout: 10s
3134
retries: 3

0 commit comments

Comments
 (0)