We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/onesvat/mcp-beancount'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
server.py•401 B
"""
Stub entrypoint for the MCP Beancount server.
This is a placeholder; the actual MCP tools and server wiring will
be implemented in subsequent tasks.
"""
from __future__ import annotations
import sys
def main() -> int:
print("mcp-beancount: server stub (implementation pending)", file=sys.stderr)
return 0
if __name__ == "__main__": # pragma: no cover
raise SystemExit(main())