- Add portainer-environments server for environment/endpoint management - Add portainer-docker server for Docker and Swarm container operations - Add merged portainer server combining core + teams functionality - Fix JSON schema issues and API compatibility - Add comprehensive documentation for each server - Add .gitignore and .env.example for security 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
318 B
Python
Executable File
14 lines
318 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Direct runner for Portainer MCP server without dev dependencies."""
|
|
|
|
import sys
|
|
import os
|
|
|
|
# Add src to path
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
|
|
|
|
# Import and run the server
|
|
from portainer_core.server import main_sync
|
|
|
|
if __name__ == "__main__":
|
|
main_sync() |