mirror of
https://github.com/latinogino/dolibarr-mcp.git
synced 2026-04-28 20:45:35 +02:00
20 lines
439 B
Python
20 lines
439 B
Python
"""
|
|
Dolibarr MCP Server Package
|
|
|
|
Professional Model Context Protocol server for complete Dolibarr ERP/CRM management.
|
|
"""
|
|
|
|
__version__ = "1.1.0"
|
|
__author__ = "Dolibarr MCP Team"
|
|
|
|
from .dolibarr_client import DolibarrClient
|
|
from .config import Config
|
|
|
|
# Note: dolibarr_mcp_server uses a functional pattern, not a class
|
|
# The server is run via the main() function in dolibarr_mcp_server.py
|
|
|
|
__all__ = [
|
|
"DolibarrClient",
|
|
"Config",
|
|
]
|