You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/time/README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,30 @@ python -m mcp_server_time
43
43
44
44
## Configuration
45
45
46
+
### Configure for Kiro
47
+
48
+
For quick installation, click the button below:
49
+
50
+
[](https://kiro.dev/launch/mcp/add?name=time&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22mcp-server-time%22%5D%7D)
51
+
52
+
#### Manual Configuration
53
+
54
+
1. From the Kiro panel, select the **MCP Servers** tab, or open the file `.kiro/settings/mcp.json` in your project.
55
+
2. Add the following configuration:
56
+
57
+
```json
58
+
{
59
+
"mcpServers": {
60
+
"time": {
61
+
"command": "uvx",
62
+
"args": ["mcp-server-time"]
63
+
}
64
+
}
65
+
}
66
+
```
67
+
68
+
For more details, see the Kiro MCP documentation for [IDE](https://kiro.dev/docs/ide/mcp/configuration/) or [CLI](https://kiro.dev/docs/cli/mcp/configuration/).
0 commit comments