You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
297 B
Python
16 lines
297 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Backward compatibility entry point for Kroger MCP server
|
|
"""
|
|
|
|
import sys
|
|
import os
|
|
|
|
# Add src directory to path for development
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
|
|
|
|
from kroger_mcp.server import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|