Skip to main content
Glama

REAPER MCP Server

by itsuzef
run_http_server.py593 B
#!/usr/bin/env python3 """ HTTP Transport version of the REAPER MCP Server This script runs the REAPER MCP server with HTTP transport instead of stdio """ import sys import os from reaper_mcp.server import create_server def main(): """Run the REAPER MCP server with HTTP transport""" server = create_server() if server: print("Starting REAPER MCP Server with HTTP transport...") # Run with HTTP transport server.run(transport='http') else: print("Failed to create REAPER MCP Server") sys.exit(1) if __name__ == "__main__": main()

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/itsuzef/reaper-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server