We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/asachs01/propublica-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•550 B
#!/usr/bin/env python3
"""
ProPublica MCP Extension - DXT Entry Point
This is the main entry point for the DXT extension following official DXT conventions.
Dependencies are bundled in the lib/ directory and loaded automatically.
"""
import sys
import os
from pathlib import Path
# Add the lib directory to Python path (DXT convention)
lib_path = Path(__file__).parent / "lib"
if lib_path.exists():
sys.path.insert(0, str(lib_path))
# Now import and run the server
from propublica_mcp.server import main
if __name__ == "__main__":
main()