We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shiguri-01/fusion-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Assuming you have not changed the general structure of the template no modification is needed in this file.
from . import commands
from .lib import fusionAddInUtils as futil
def run(context):
try:
# This will run the start function in each of your commands as defined in commands/__init__.py
commands.start()
except:
futil.handle_error("run")
def stop(context):
try:
# Remove all of the event handlers your app has created
futil.clear_handlers()
# This will run the start function in each of your commands as defined in commands/__init__.py
commands.stop()
except:
futil.handle_error("stop")