Merge pull request #1527 from czy88840616/patch-1

Docs: wrap mcpServers config in complete JSON for better IDE support
This commit is contained in:
Ola Hungerford
2025-04-23 08:08:29 -07:00
committed by GitHub

View File

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