Click on "Install 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)
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:
Output:
ISO 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:
Usage
Command Line
CLI 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: