d

datetime-mcp

@ryddle/datetime-mcp
0 Stars 12 次浏览 ryddle 更新于 2026-08-23
该服务暂未提供标准配置,请参考 README 手动接入

服务介绍

DateTime MCP Server

A Model Context Protocol (MCP) server that returns current user's timezone date and time

Features

  • returns current user's timezon date and time

Installation

  1. Clone or download this repository
  2. Install dependencies:
npm install
  1. Build the server:
npm run build

Testing and Debugging

The easiest way to test your MCP server interactively:

npm run inspector

This will open a web interface where you can:

  • See all available tools
  • Test the datetime tool
  • Inspect requests and responses

2. VSCode Debugging

Use the built-in VSCode debugger with the provided launch configurations:

  • Press F5 or go to Run Start Debugging
  • Choose "Debug MCP with Inspector" to debug with the web interface
  • Choose "Debug MCP Server" to debug the server directly
  • Set breakpoints in your code to step through execution

3. Manual Testing

Run the test script:

node test-server.js

4. Development Mode

Build automatically on file changes:

npm run watch

In another terminal, run the inspector:

npm run inspector

Common Issues

  • Exit Code 1: Make sure to run npm run build first
  • Port in use: Close other inspector instances
  • Module errors: Verify "type": "module" is in package.json

Configuration

Add the server to your MCP configuration:

For VSCode (Claude Dev Extension):

{
  "mcpServers": {
    "datetime": {
      "command": "node",
      "args": ["/path/to/datetime-mcp/build/index.js"]
    }
  }
}

For Claude Desktop:

{
  "mcpServers": {
    "datetime": {
      "command": "node",
      "args": ["/path/to/datetime-mcp/build/index.js"]
    }
  }
}

Usage

The server provides a single tool named datetime with no parameters:

Example usage:

use_mcp_tool({
  server_name: "datetime",
  tool_name: "datetime",
})

Example response:

{
  "content": [
    {
      "type": "text",
      "text": "Fri Dec 13 2025 10:30:45 GMT-0500 (Eastern Standard Time)"
    }
  ]
}

Contributing

Feel free to submit issues and enhancement requests!

相关 MCP 服务