📦
Uuid
A simple MCP server that provides timestamp-based UUIDs
0 installs
Trust: 37 — Low
Ai
Ask AI about Uuid
Powered by Claude · Grounded in docs
I know everything about Uuid. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
shift-lite-mcp
A minimal utility server built for the Model Context Protocol (MCP).
Features
- 🔌 Easy integration with Claude Desktop and Claude Code
- ⚡ Lightweight and fast
- 🛠️ Built with TypeScript
Installation
Option 1: Install globally (simple, persistent)
npm install -g @abhishekrj02/shift-lite-mcp
Verify it works:
shift-lite-mcp
You should see:
Shift-lite MCP Server running on stdio
Claude Code setup
Claude Code does not auto-discover MCP servers. You must register it manually.
Install the Package (if not already)
You can use this package without installing it globally by using npx, or install it globally for faster access.
npm install -g @abhishekrj02/shift-lite-mcp
Add to Claude Code
For Windows Users
claude mcp add --scope user shift-lite-mcp -- cmd /c npx -y @abhishekrj02/shift-lite-mcp
For macOS/Linux Users
claude mcp add --scope user shift-lite-mcp -- npx -y @abhishekrj02/shift-lite-mcp
Verify Installation
claude mcp list
Use It
Start a Claude Code session:
claude
Claude Desktop setup
Claude Desktop does not auto-discover MCP servers. You must register it manually.
Config file location
macOS / Linux
~/.config/claude-desktop/claude_desktop_config.json
Windows
%APPDATA%\Claude\claude_desktop_config.json
Add this:
{
"mcpServers": {
"shift-lite-mcp": {
"command": "shift-lite-mcp"
}
}
}
Restart Claude Desktop after saving.
Development
Clone and build:
npm install
npm run build
Run locally:
node build/index.js
