Metadata-Version: 2.4
Name: xst-cuc-xst
Version: 1.0.0
Summary: MCP Server implementation providing current time functionality with timezone support
Home-page: https://github.com/yourusername/xst-cuc-xst
Author: Your Name
Author-email: your.email@example.com
Project-URL: Source, https://github.com/yourusername/xst-cuc-xst
Project-URL: Documentation, https://github.com/yourusername/xst-cuc-xst/README.md
Project-URL: Issues, https://github.com/yourusername/xst-cuc-xst/issues
Keywords: mcp model-context-protocol server time timezone
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=3.7; extra == "dev"
Requires-Dist: twine>=1.15; extra == "dev"
Requires-Dist: wheel>=0.34; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-python
Dynamic: summary

# mcp-time-server

[![PyPI version](https://badge.fury.io/py/mcp-time-server.svg)](https://badge.fury.io/py/mcp-time-server)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Model Context Protocol (MCP) Server implementation that provides a tool to get the current time with optional timezone support.

## Overview

The `mcp-time-server` is a lightweight MCP Server implementation that follows the Model Context Protocol (MCP) guidelines. It provides a clean API for tool registration and execution, with a focus on simplicity and ease of use.

## Features

- **Current Time Tool**: `get_current_time` tool to retrieve current time information
- **Timezone Support**: Optional timezone offset and timezone name parameters
- **Clean API**: Proper tool registration and execution system
- **Error Handling**: Comprehensive error handling for invalid tools and parameters
- **Well Documented**: Clear comments and documentation throughout
- **Zero Dependencies**: No external dependencies required

## Installation

```bash
pip install mcp-time-server
```

## Usage

### Basic Usage

```python
from mcp_time_server import MCPServer

# Create MCP Server instance
server = MCPServer()

# Execute get_current_time tool with default UTC time
result = server.execute_tool("get_current_time")
print(result)
```

### With Timezone Parameters

```python
# Get time in UTC+8 (Asia/Shanghai)
result = server.execute_tool(
    "get_current_time",
    timezone_offset=8,
    timezone_name="Asia/Shanghai"
)

# Get time in UTC-5 (America/New_York)
result = server.execute_tool(
    "get_current_time",
    timezone_offset=-5,
    timezone_name="America/New_York"
)
```

### Available Tools

```python
# List all available tools
tools = server.list_tools()
print(tools)
```

### Server Information

```python
# Get server implementation information
server_info = server.get_server_info()
print(server_info)
```

## Tool Parameters

| Parameter | Type | Description | Default |
|-----------|------|-------------|---------|
| `timezone_offset` | number | UTC offset in hours (e.g., 8 for UTC+8, -5 for UTC-5) | 0 |
| `timezone_name` | string | Timezone name for display purposes | Generated from offset |

## Response Format

```json
{
  "current_time": "2025-12-26T11:16:58.143220+00:00",
  "time_zone": "UTC+0.0",
  "formatted_time": "2025-12-26 11:16:58",
  "timestamp": 1766747818.143357,
  "utc_time": "2025-12-26T11:16:58.143220+00:00",
  "timezone_offset": 0
}
```

## Console Script

The package provides a console script to run the server demonstration:

```bash
mcp-time-server
```

This will show the server initialization, available tools, and test cases for different timezone configurations.

## Implementation Details

- The server follows the MCP protocol for tool registration and execution
- Tools are registered with JSON Schema defining their parameters
- Tool handlers are called with the provided parameters
- Comprehensive error handling ensures graceful failure
- The implementation is modular and extensible for adding new tools

## Requirements

- Python 3.7+
- No additional dependencies required

## License

MIT License

## Project Structure

```
mcp-time-server/
├── mcp_time_server/
│   ├── __init__.py    # Package metadata and exports
│   └── server.py      # Main server implementation
├── setup.py           # Package configuration
├── README.md          # This file
└── LICENSE            # License file
```

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## Support

If you encounter any issues or have questions, please open an issue on the [GitHub repository](https://github.com/yourusername/mcp-time-server).
