https://github.com/ospoon/chinese-holidays
https://github.com/ospoon/chinese-holidays
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/ospoon/chinese-holidays
- Owner: OSpoon
- License: mit
- Created: 2025-01-24T02:48:33.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-24T02:54:53.000Z (over 1 year ago)
- Last Synced: 2025-02-08T11:36:41.814Z (over 1 year ago)
- Language: Python
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Chinese-Holidays MCP server
Query information about Chinese holidays
## Tools
1. `get-all-holidays`: Get all holidays for a year
2. `is-holiday`: Check if a date is a holiday
## Configuration
### 1. Development/Unpublished Servers Configuration:
```json
{
"mcpServers": {
"chinese-holidays": {
"command": "uv",
"args": [
"--directory",
"the absolute path of chinese-holidays",
"run",
"chinese-holidays"
]
}
}
}
```
### 2. Published Servers Configuration
```json
{
"mcpServers": {
"chinese-holidays": {
"command": "uvx",
"args": [
"chinese-holidays"
],
"env": {
"PYTHONIOENCODING": "utf-8"
}
}
}
}
```
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.