We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/memextech/vibe-plan-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_with_uvx.py•392 B
#!/usr/bin/env python3
"""
Entry point for running the MCP server with uvx
"""
import os
import sys
# Change to the project directory
project_dir = os.path.dirname(os.path.abspath(__file__))
os.chdir(project_dir)
# Add project directory to Python path
sys.path.insert(0, project_dir)
# Import and run the server
from vibe_stack_planner import mcp
if __name__ == "__main__":
mcp.run()