We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/selfxyz/self-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
cli.py•312 B
#!/usr/bin/env python3
"""CLI entry point for self-mcp"""
import subprocess
import sys
from pathlib import Path
def main():
"""Start the Self MCP server"""
# Import and run directly to avoid subprocess import issues
from self_mcp.server import run
run()
if __name__ == "__main__":
main()