import subprocess
# Launch manim with pipes for stdin/stdout/stderr
process = subprocess.Popen(
["uv", "run", "manim", "manim_loop.py", "-p", "--renderer=opengl"],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True, # This makes it use text mode instead of bytes
)
while True:
b = input(": ")
if b == "exit":
break
process.stdin.write(b + "\n")
process.stdin.flush()
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/burningion/video-editing-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server