mirror of
https://github.com/latinogino/dolibarr-mcp.git
synced 2026-04-11 21:45:34 +02:00
96 lines
3.0 KiB
Python
96 lines
3.0 KiB
Python
"""Quick test script for the standalone Dolibarr MCP server."""
|
|
|
|
import asyncio
|
|
import sys
|
|
import os
|
|
|
|
# Add src to path for imports
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
|
|
|
|
try:
|
|
from src.dolibarr_mcp.standalone_server import StandaloneMCPServer
|
|
from src.dolibarr_mcp.config import Config
|
|
print("✅ All imports successful - standalone server ready!")
|
|
except ImportError as e:
|
|
print(f"❌ Import error: {e}")
|
|
print("💡 Please run: setup_standalone.bat first")
|
|
sys.exit(1)
|
|
|
|
async def test_standalone():
|
|
"""Test the standalone server."""
|
|
print("🧪 Testing Standalone Dolibarr MCP Server...")
|
|
print("")
|
|
|
|
try:
|
|
# Test config loading
|
|
config = Config()
|
|
print(f"✅ Configuration loaded")
|
|
print(f" URL: {config.dolibarr_url}")
|
|
print(f" API Key: {'*' * min(len(config.api_key), 10)}...")
|
|
print("")
|
|
|
|
# Test server creation
|
|
server = StandaloneMCPServer("test-server")
|
|
print("✅ Server instance created")
|
|
|
|
# Test tool definitions
|
|
tools = server.get_tool_definitions()
|
|
print(f"✅ Tools loaded: {len(tools)} available")
|
|
print("")
|
|
|
|
# List some tools
|
|
print("📋 Available Tools (first 10):")
|
|
for i, tool in enumerate(tools[:10]):
|
|
print(f" {i+1:2}. {tool['name']} - {tool['description']}")
|
|
if len(tools) > 10:
|
|
print(f" ... and {len(tools) - 10} more")
|
|
print("")
|
|
|
|
# Test a simple tool call (without actual API)
|
|
print("🧪 Testing tool call structure...")
|
|
try:
|
|
# This will fail with API error, but tests the structure
|
|
result = await server.handle_tool_call("test_connection", {})
|
|
if "error" in result and "api_error" in result.get("type", ""):
|
|
print("✅ Tool call structure working (API connection expected to fail)")
|
|
else:
|
|
print("✅ Tool call successful!")
|
|
print(f" Result: {result}")
|
|
except Exception as e:
|
|
print(f"✅ Tool call structure working (got expected error: {type(e).__name__})")
|
|
|
|
print("")
|
|
print("🎉 Standalone server test completed successfully!")
|
|
print("")
|
|
print("🚀 Ready to run:")
|
|
print(" python -m src.dolibarr_mcp.standalone_server")
|
|
print(" OR")
|
|
print(" .\\run_standalone.bat")
|
|
|
|
except Exception as e:
|
|
print(f"❌ Test failed: {e}")
|
|
return False
|
|
|
|
return True
|
|
|
|
if __name__ == "__main__":
|
|
print("=" * 50)
|
|
print("Dolibarr MCP Standalone Server Test")
|
|
print("=" * 50)
|
|
print("")
|
|
|
|
success = asyncio.run(test_standalone())
|
|
|
|
if success:
|
|
print("")
|
|
print("=" * 50)
|
|
print("✅ ALL TESTS PASSED - SERVER READY!")
|
|
print("=" * 50)
|
|
sys.exit(0)
|
|
else:
|
|
print("")
|
|
print("=" * 50)
|
|
print("❌ TESTS FAILED - CHECK SETUP")
|
|
print("=" * 50)
|
|
sys.exit(1)
|