-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinstall_mcp.py
70 lines (59 loc) · 2.1 KB
/
install_mcp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python3
"""
FPL MCP Server Installer for Claude Desktop
"""
import os
import json
import sys
import subprocess
from pathlib import Path
def main():
print("Fantasy Premier League MCP Server - Claude Desktop Installer")
print("===================================================")
# Install the package if not already installed
try:
subprocess.check_call([sys.executable, "-m", "pip", "install", "-e", "."])
print("✅ Package installed successfully")
except subprocess.CalledProcessError:
print("❌ Failed to install package")
return
# Find the Claude Desktop config location
if sys.platform == "darwin": # macOS
config_dir = Path.home() / "Library" / "Application Support" / "Claude"
elif sys.platform == "win32": # Windows
config_dir = Path(os.getenv("APPDATA")) / "Claude"
else:
print("❌ Unsupported platform. Please configure Claude Desktop manually.")
return
config_file = config_dir / "claude_desktop_config.json"
config_dir.mkdir(parents=True, exist_ok=True)
# Load existing config or create new one
if config_file.exists():
with open(config_file, "r") as f:
try:
config = json.load(f)
except json.JSONDecodeError:
config = {}
else:
config = {}
# Ensure mcpServers key exists
if "mcpServers" not in config:
config["mcpServers"] = {}
# Add our server
config["mcpServers"]["fantasy-pl"] = {
"command": "python",
"args": ["-m", "fpl_mcp"]
}
# Save the config
with open(config_file, "w") as f:
json.dump(config, f, indent=2)
print("✅ Claude Desktop configuration updated")
print("\nSetup Complete! 🎉")
print("To use the FPL MCP server:")
print("1. Start Claude Desktop")
print("2. Look for the FPL tools in the tool list (hammer icon)")
print("\nExample queries:")
print("- Compare Mohamed Salah and Erling Haaland")
print("- Find all Arsenal midfielders")
if __name__ == "__main__":
main()