docs: Update server README.md

This commit is contained in:
Harry Chen
2025-04-22 12:03:01 +08:00
committed by GitHub
parent a95086b888
commit 0a7c7c18f8

View File

@@ -45,10 +45,12 @@ Add to your Claude settings:
<summary>Using uvx</summary> <summary>Using uvx</summary>
```json ```json
"mcpServers": { {
"time": { "mcpServers": {
"command": "uvx", "time": {
"args": ["mcp-server-time"] "command": "uvx",
"args": ["mcp-server-time"]
}
} }
} }
``` ```
@@ -58,10 +60,12 @@ Add to your Claude settings:
<summary>Using docker</summary> <summary>Using docker</summary>
```json ```json
"mcpServers": { {
"time": { "mcpServers": {
"command": "docker", "time": {
"args": ["run", "-i", "--rm", "mcp/time"] "command": "docker",
"args": ["run", "-i", "--rm", "mcp/time"]
}
} }
} }
``` ```
@@ -71,10 +75,12 @@ Add to your Claude settings:
<summary>Using pip installation</summary> <summary>Using pip installation</summary>
```json ```json
"mcpServers": { {
"time": { "mcpServers": {
"command": "python", "time": {
"args": ["-m", "mcp_server_time"] "command": "python",
"args": ["-m", "mcp_server_time"]
}
} }
} }
``` ```