diff --git a/src/time/README.md b/src/time/README.md
index eed504bb30..181823f29a 100644
--- a/src/time/README.md
+++ b/src/time/README.md
@@ -45,10 +45,12 @@ Add to your Claude settings:
Using uvx
```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:
Using docker
```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:
Using pip installation
```json
-"mcpServers": {
- "time": {
- "command": "python",
- "args": ["-m", "mcp_server_time"]
+{
+ "mcpServers": {
+ "time": {
+ "command": "python",
+ "args": ["-m", "mcp_server_time"]
+ }
}
}
```