We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Sivan22/mcp-sefaria-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from sefaria_handler import *
import os
import asyncio
import os
async def print_search ():
results = await search_texts( "גזל גוי")
print(results)
async def main():
print ("searching...")
await print_search()
if __name__ == "__main__":
asyncio.run(main())