ID Generator MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ID Generator MCP Servergenerate 5 unique IDs and get the current ISO timestamp"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ID Generator MCP Server
An MCP (Model Context Protocol) server that generates auto-incrementing unique identifiers and provides current ISO timestamps.
Overview
This MCP server provides two core tools:
Generate Unique ID - Generates auto-incrementing 8-digit hexadecimal identifiers with persistent state across restarts
ISO Date - Returns the current date and time in ISO 8601 format (UTC)
Related MCP server: UUID MCP Provider
Tools
Generate Unique ID
The MCP server generates auto-incrementing 8-digit hexadecimal unique identifiers. Each ID automatically increments from the previous value, ensuring sequential uniqueness across all calls and server restarts. The counter state is persisted to disk, making it ideal for:
Creating unique element IDs for testing and automation
Generating sequential tracking numbers
Assigning unique references to data entries
Any scenario requiring guaranteed unique, sequential identifiers
Input:
{
"count": 5 // Optional: number of IDs to generate (1-32, defaults to 1)
}Output:
Generated 5 unique ID(s):
00000001
00000002
00000003
00000004
00000005ISO Date
The MCP server returns the current date and time in ISO 8601 format. Each call provides the precise current timestamp in UTC timezone, useful for:
Creating standardized timestamps for logs and records
Generating sortable date strings
Recording event times in a universal format
Any scenario requiring ISO 8601 compliant timestamps
Input:
No input parameters required.
Output:
Current ISO datetime: 2025-12-10T14:23:45.678ZUsage
Command Line
# Basic usage with stdio transport
npx @gergelyszerovay/mcp-id-date
# Enable HTTP transport for SSE
npx @gergelyszerovay/mcp-id-date --enableHttpTransport
# Enable REST API server
npx @gergelyszerovay/mcp-id-date --enableRestServer
# Custom counter file location
npx @gergelyszerovay/mcp-id-date --idCounterFile=./my-counter.txtCLI Options
Flag | Description | Default |
| Enable HTTP transport for SSE |
|
| Enable stdio transport |
|
| Enable REST API server |
|
| Port for MCP HTTP server |
|
| Port for REST HTTP server |
|
| Path to the file used for tracking the last generated ID |
|
MCP Integration
Add this to your MCP server configuration:
{
"mcpServers": {
"id-generator": {
"command": "npx",
"args": ["-y", "@gergelyszerovay/mcp-id-date"]
}
}
}This server cannot be deployed
Maintenance
Related MCP Connectors
Concierge MCP for agentic workflows: verified time + drift, uuid, diff, calc, attest, verify.
Generate IDs, QR codes, and hashes, encode values, geolocate IPs, plus gated host diagnostics.
Related MCP Servers
- AlicenseAqualityDmaintenanceA simple Model Context Protocol server that generates timestamp-based UUIDs (v7) when called by an LLM, providing chronologically sortable unique identifiers with no input parameters needed.123 npm1MIT
- AlicenseAqualityDmaintenanceA simple Model Context Protocol server that provides timestamp-based UUID v7 identifiers when called by an LLM, offering chronologically sortable unique IDs with no input parameters needed.123 npmMIT
- AlicenseNot gradedqualityDmaintenanceA lightweight Model Context Protocol server that provides current UTC time in various formats, including ISO 8601 and Unix timestamps. It is designed for seamless integration with Cursor IDE to provide consistent time-related capabilities across all development projects.MIT
- AlicenseNot gradedqualityDmaintenanceA local Model Context Protocol server designed to share contextual information between an AI and a user. It primarily provides a tool to retrieve the current date and time in ISO 8601 format based on the server's local timezone.16 npmMIT