Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.memanto.ai/llms.txt

Use this file to discover all available pages before exploring further.

memanto serve

Start the local Memanto API server. Exposes REST endpoints for programmatic access.
memanto serve [OPTIONS]
Options:
OptionDefaultDescription
--host TEXT0.0.0.0Server host address
--port INTEGER8000Server port
--reloadfalseAuto-reload on code changes
Examples: Start on default port:
memanto serve
Output:
INFO:     Uvicorn running on http://0.0.0.0:8000
INFO:     Application startup complete
Start on custom port:
memanto serve --port 8001
Start with auto-reload (development):
memanto serve --reload
Specify host and port:
memanto serve --host 127.0.0.1 --port 9000
API Documentation: Once server is running: Health Check:
curl http://localhost:8000/health
Use Cases:
  • Run Memanto as a service
  • Programmatic access via REST API
  • Integration with external applications
  • Development and testing