We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/livingstaccato/mcp-bbs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_new_character.py•362 B
#!/usr/bin/env python3
"""Wrapper for TW2002 new character verification."""
import asyncio
import sys
from bbsbot.games.tw2002.verification.new_character import test
if __name__ == "__main__":
try:
result = asyncio.run(test())
sys.exit(0 if result else 1)
except KeyboardInterrupt:
print("\n\nInterrupted")
sys.exit(1)