We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/johwiebe/anki-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•310 B
#!/usr/bin/env python3
"""
Entry point for the Anki MCP server.
This allows the package to be run directly with `python -m anki_mcp`
or as an installed executable.
"""
from .server import app
def main():
"""Run the Anki MCP server."""
app.run(transport='stdio')
if __name__ == "__main__":
main()