Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM node:lts-alpine

WORKDIR /app

# Install dependencies
COPY package*.json ./
RUN npm install --ignore-scripts

# Copy source files
COPY . ./

# Build the project
RUN npm run build

EXPOSE 3000

CMD [ "node", "build/index.js" ]
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# MCP Wait Timer Server
[![smithery badge](https://smithery.ai/badge/@199-bio/mcp-wait-timer)](https://smithery.ai/server/@199-bio/mcp-wait-timer)

An MCP (Model Context Protocol) server providing a simple `wait` tool.

Expand Down Expand Up @@ -40,6 +41,14 @@ This server provides a `wait` tool that allows the user or the AI prompt to expl

This server requires Node.js (version 16 or higher).

### Installing via Smithery

To install Wait Timer Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@199-bio/mcp-wait-timer):

```bash
npx -y @smithery/cli install @199-bio/mcp-wait-timer --client claude
```

### Step 1: Configure Your MCP Client

Add the following JSON block within the `"mcpServers": {}` object in your client's configuration file. Choose the file corresponding to your client and operating system:
Expand Down
13 changes: 13 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml

startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
properties: {}
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'node', args: ['build/index.js'] })
exampleConfig: {}