MCP Time Server
A minimal MCP server that provides current time information with configurable timezone support set on the client side.
README
MCP Time Server
Minimal MCP server that returns current time. Timezone configured on client side.
Installation
python3.13 -m venv .venv
.venv/bin/pip install -r requirements.txt
Configuration
Create config.json:
{
"token": "your-secret-token",
"port": 23386,
"path": "/your-random-path"
}
Running
.venv/bin/python server.py
Client Configuration
Claude Code CLI
claude mcp add time --transport sse \
--url "https://DOMAIN/PATH/sse" \
--header "Authorization: Bearer TOKEN" \
--header "X-Timezone: Asia/Novokuznetsk"
Claude Desktop
{
"mcpServers": {
"time": {
"command": "%APPDATA%\\npm\\mcp-remote.cmd",
"args": [
"https://DOMAIN/PATH/sse",
"--header",
"Authorization:Bearer ${MCP_TIME_TOKEN}",
"--header",
"X-Timezone:${MCP_TIME_TIMEZONE}"
],
"env": {
"MCP_TIME_TOKEN": "your-token",
"MCP_TIME_TIMEZONE": "Asia/Novokuznetsk"
}
}
}
}
Xray + Nginx Setup
When running behind Xray VLESS with ALPN-based fallbacks to nginx, add location block to nginx config (both h2 and http/1.1 server blocks):
location /PATH/ {
proxy_pass http://127.0.0.1:PORT;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Connection '';
proxy_buffering off;
proxy_cache off;
proxy_read_timeout 86400s;
send_timeout 86400s;
chunked_transfer_encoding off;
add_header X-Accel-Buffering no;
}
Note: Xray path-based fallbacks only work with HTTP/1.1. For HTTP/2 (ALPN h2), requests go to nginx fallback, so nginx location is required.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
E2B
Using MCP to run code via e2b.