A FastAPI-based API for managing the Meridian 59 server.
Project description
Meridian 59 API (m59api)
This is a FastAPI-based API for managing a Meridian 59 server.
Installation
You can install m59api directly from PyPI:
pip install m59api
Official PyPI page: https://pypi.org/project/m59api/
Configuration
Before running the application, set the DISCORD_WEBHOOK_URL environment variable if you want to use Discord webhook features.
On Windows (Command Prompt or PowerShell):
set DISCORD_WEBHOOK_URL=https://your-discord-webhook-url
On macOS/Linux (bash/zsh):
export DISCORD_WEBHOOK_URL=https://your-discord-webhook-url
Running
Quick start with all defaults:
m59api
This will run the API on 127.0.0.1:8000 with log level info.
Specify options (optional):
m59api --host 0.0.0.0 --port 8000 --reload --log-level debug
Or with Uvicorn directly:
uvicorn m59api.main:app --reload
With Docker:
docker run --rm -it -e DISCORD_WEBHOOK_URL=https://your-discord-webhook-url -p 5959:5959 -p 8000:8000 -p 9998:9998 m59-linux-test
Configuration Options
--host: Host to bind to (default:127.0.0.1)--port: Port to bind to (default:8000)--reload: Enable auto-reload for development (default: off)--log-level: Set log level (default:info)
You can combine these options as needed, or just run m59api for the defaults.
API Documentation
- Swagger UI: http://127.0.0.1:8000/docs
- ReDoc UI: http://127.0.0.1:8000/redoc
Listening for Pushes from Meridian 59
In addition to querying the Meridian 59 server via the maintenance port, m59api can also listen for push messages sent from the server or other processes via a named pipe (on Windows) or a FIFO (on Linux).
- On Linux: Listens on
/tmp/m59apiwebhook(FIFO) - On Windows: Listens on
\\.\pipe\m59apiwebhook(named pipe)
Any message written to this pipe will be received and printed by the API service. This allows the game server or other tools to push notifications or events to the API in real time.
Note: On Windows, you must install
pywin32for named pipe support:pip install pywin32
How it Works
- Querying: Most API endpoints connect to the Meridian 59 maintenance port and issue commands to retrieve or modify server state.
- Pushes: The API also listens for messages sent to the OS pipe, allowing for real-time event pushes from the server or other processes.
Disclaimer
This project is an independent, community-created tool for managing Meridian 59 servers.
It is not affiliated with, endorsed by, or supported by the official Meridian 59 project or its trademark holders.
Use at your own risk.
No warranty is provided. The authors are not responsible for any issues, data loss, or damages resulting from the use of this software.
Meridian 59 is a registered trademark of Andrew and Christopher Kirmse.
The official Meridian 59 repository can be found at:
https://github.com/Meridian59/Meridian59
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file m59api-0.1.12.tar.gz.
File metadata
- Download URL: m59api-0.1.12.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9a3b5ee680cae92f7eea69e052f4e4c822966223d8baf20c05b4d0a33a17f1e
|
|
| MD5 |
878b9a5a624a78be1fc759a5b05379c6
|
|
| BLAKE2b-256 |
9c393045401c03bbff03d73ce010108cc3d133cbf159dd7541d0f57182ce3b4e
|
File details
Details for the file m59api-0.1.12-py3-none-any.whl.
File metadata
- Download URL: m59api-0.1.12-py3-none-any.whl
- Upload date:
- Size: 18.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18281318e17ebf3d5c08af3d03c7ab00984d7f901efe4fb4b0984daff8f32dd7
|
|
| MD5 |
31afd0d1a1ff328db0fbde4d22ebcf9b
|
|
| BLAKE2b-256 |
5995bd1e52af959b8d9d4746336cd56b5ea7096d7ce43995bebf8cf4063355b0
|