We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bio-mcp/bio-mcp-blast'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server_standalone.py•350 B
"""
Standalone BLAST server - no queue dependency
Works completely locally with immediate results
"""
from .server import BlastServer
async def main():
# Original server - runs BLAST locally and returns results immediately
server = BlastServer()
await server.run()
if __name__ == "__main__":
import asyncio
asyncio.run(main())