We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/GENTEL-lab/OrigeneMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import subprocess as sp
import sys
from pathlib import Path
from fabric import task
from invoke import Context
@task
def run(c: Context):
"""
Run server code
"""
sp.check_call(
"export PYTHONPATH=`fab pypath` ;uv run -m deploy.web",
cwd=Path(__file__).parent,
shell=True,
)
@task
def pypath(c: Context):
code_root = Path(__file__).parent
ans = [
code_root,
*sys.path,
]
ans = [Path(i).absolute().__str__() for i in ans]
a = []
for i in ans:
if i not in a:
a.append(i)
print(":".join(a))