Sign In

@katomato65/time-mcp

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@katomato65/time-mcp - npm Package Compare versions

Comparing version
1.0.2
to
1.0.3
+7
-3
package.json
{
"name": "@katomato65/time-mcp",
"version": "1.0.3",
"mcpName": "io.github.KatoMato65/time-mcp",
"version": "1.0.2",
"description": "Simple MCP server that tells the time",

@@ -11,2 +11,7 @@ "type": "module",

},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"scripts": {

@@ -22,7 +27,6 @@ "build": "echo \"No build step required\""

],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KatoMato65/time-mcp.git"
"url": "git+https://github.com/KatoMato65/time-mcp.git"
},

@@ -29,0 +33,0 @@ "dependencies": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

FROM debian:bookworm-slim
ENV DEBIAN_FRONTEND=noninteractive
# Node.js 24 + pnpm + mcp-proxy (+ git to clone)
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
git \
&& curl -fsSL https://deb.nodesource.com/setup_24.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& npm install -g pnpm@10.14.0 mcp-proxy@6.2.0 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /app
# Pin to the commit you used in the logs (optional — remove checkout to track main)
RUN git clone https://github.com/KatoMato65/time-mcp.git . \
&& git checkout d23cca764fe317b4bcaf8cf41e0b5fffceda700c
# Install deps (no build step exists)
RUN pnpm install --prod --frozen-lockfile || pnpm install --prod
# Run the MCP server through mcp-proxy
CMD ["mcp-proxy", "node", "./index.js"]

Sorry, the diff of this file is not supported yet

# Prompts for Simple Time MCP
This document contains example prompts for using the Simple Time MCP server.
## Basic Usage Prompts
### Get Current Time
```
What time is it right now?
```
### Get Current Date
```
What's today's date?
```
### Get Full Date and Time
```
What's the current date and time?
```
## Advanced Usage
### Time Zone Queries
```
Get the current time in full format
```
### Date Formatting
```
Show me just the date, not the time
```
## Integration Examples
### In MCP Client Conversations
```
User: I need to know what time it is
Assistant: [Uses get_time tool with format="time"]
```
```
User: What day is it today?
Assistant: [Uses get_time tool with format="date"]
```
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.KatoMato65/time-mcp",
"description": "Simple MCP server that tells the time",
"repository": {
"url": "https://github.com/KatoMato65/time-mcp",
"source": "github"
},
"version": "1.0.0",
"packages": [
{
"registryType": "npm",
"identifier": "@katomato65/time-mcp",
"version": "1.0.1",
"transport": {
"type": "stdio"
}
}
]
}