-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement core Wikimedia API functionality: - Search content and titles - Get page content and language versions - Featured content with date selection - Historical events by date and type - Proper error handling and validation - Comprehensive .gitignore
- Loading branch information
Showing
8 changed files
with
956 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
dist/ | ||
build/ | ||
*.egg-info/ | ||
*.egg | ||
|
||
# Virtual environments | ||
venv/ | ||
env/ | ||
.env/ | ||
.venv/ | ||
|
||
# IDE specific files | ||
.idea/ | ||
.vscode/ | ||
*.swp | ||
*.swo | ||
.project | ||
.pydevproject | ||
.settings/ | ||
|
||
# Testing | ||
.pytest_cache/ | ||
.coverage | ||
htmlcov/ | ||
.tox/ | ||
|
||
# Logs and databases | ||
*.log | ||
*.sqlite | ||
*.db | ||
|
||
# Local development settings | ||
.env | ||
.env.local | ||
.env.*.local | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
# Documentation | ||
docs/_build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,14 @@ version = "0.1.0" | |
description = "A MCP server project" | ||
readme = "README.md" | ||
requires-python = ">=3.12" | ||
dependencies = [ "mcp>=1.1.2",] | ||
dependencies = [ "mcp>=1.1.2", "aiohttp>=3.9.1", "pydantic>=2.5.3" ] | ||
|
||
[[project.authors]] | ||
name = "privetin" | ||
email = "[email protected]" | ||
|
||
[build-system] | ||
requires = [ "hatchling",] | ||
requires = [ "hatchling" ] | ||
build-backend = "hatchling.build" | ||
|
||
[project.scripts] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Oops, something went wrong.