feat: Complete PyPI Query MCP Server Implementation (#3)
Merge pull request implementing complete PyPI query MCP server with comprehensive features and CI/CD pipeline.
This commit is contained in:
parent
b1a1a6866d
commit
030b3a2607
33 changed files with 3238 additions and 246 deletions
25
pypi_query_mcp/tools/__init__.py
Normal file
25
pypi_query_mcp/tools/__init__.py
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
"""MCP tools for PyPI package queries.
|
||||
|
||||
This package contains the FastMCP tool implementations that provide
|
||||
the user-facing interface for PyPI package operations.
|
||||
"""
|
||||
|
||||
from .compatibility_check import (
|
||||
check_python_compatibility,
|
||||
get_compatible_python_versions,
|
||||
suggest_python_version_for_packages,
|
||||
)
|
||||
from .package_query import (
|
||||
query_package_dependencies,
|
||||
query_package_info,
|
||||
query_package_versions,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"query_package_info",
|
||||
"query_package_versions",
|
||||
"query_package_dependencies",
|
||||
"check_python_compatibility",
|
||||
"get_compatible_python_versions",
|
||||
"suggest_python_version_for_packages",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue