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: README.md
+53Lines changed: 53 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,55 @@ mcp:
101
101
}
102
102
```
103
103
104
+
### ⏱️ Wait Server
105
+
106
+
A simple wait/sleep server that allows AI models to autonomously wait for a specified duration. Useful for waiting for asynchronous operations to complete.
107
+
108
+
**Features:**
109
+
- Wait for a specified duration in seconds (supports fractional seconds)
110
+
- Context cancellation support for interruption
111
+
- Input validation (positive duration, maximum 1 hour)
112
+
- JSON schema validation for inputs/outputs
113
+
114
+
**Tool:**
115
+
- `wait`- Wait for a specified duration in seconds
116
+
117
+
**Input Format:**
118
+
```json
119
+
{
120
+
"duration": 5.5
121
+
}
122
+
```
123
+
124
+
**Output Format:**
125
+
```json
126
+
{
127
+
"message": "Waited for 5.50 seconds"
128
+
}
129
+
```
130
+
131
+
**Docker Image:**
132
+
```bash
133
+
docker run ghcr.io/mudler/mcps/wait:latest
134
+
```
135
+
136
+
**LocalAI configuration (to add to the model config):**
137
+
```yaml
138
+
mcp:
139
+
stdio: |
140
+
{
141
+
"mcpServers": {
142
+
"wait": {
143
+
"command": "docker",
144
+
"args": [
145
+
"run", "-i", "--rm",
146
+
"ghcr.io/mudler/mcps/wait:master"
147
+
]
148
+
}
149
+
}
150
+
}
151
+
```
152
+
104
153
### 🧠 Memory Server
105
154
106
155
A persistent memory storage server that allows AI models to store, retrieve, and manage information across sessions using disk-based full-text search.
@@ -992,6 +1041,7 @@ make dev
992
1041
# Build specific server
993
1042
make MCP_SERVER=duckduckgo build
994
1043
make MCP_SERVER=weather build
1044
+
make MCP_SERVER=wait build
995
1045
make MCP_SERVER=memory build
996
1046
make MCP_SERVER=shell build
997
1047
make MCP_SERVER=ssh build
@@ -1054,6 +1104,9 @@ Docker images are automatically built and pushed to GitHub Container Registry:
1054
1104
- `ghcr.io/mudler/mcps/weather:latest`- Latest Weather server
0 commit comments