You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository includes an MCP (Model Context Protocol) server that provides programmatic access to the Drupal tools database. See [mcp-server/README.md](./mcp-server/README.md) for details.
53
+
This repository includes an MCP (Model Context Protocol) server that provides programmatic access to the Drupal tools database. The MCP server enables AI assistants like Claude Desktop to intelligently discover and recommend Drupal development tools through natural language queries.
54
54
55
-
### Quick Start
55
+
### Two Ways to Use
56
+
57
+
#### Option 1: NPM Package (Recommended for End Users)
58
+
59
+
Install the published NPM package for immediate use with Claude Desktop:
60
+
61
+
```bash
62
+
# Add to Claude Desktop configuration:
63
+
# "mcpServers": {
64
+
# "drupaltools": {
65
+
# "type": "stdio",
66
+
# "command": "npx",
67
+
# "args": ["@drupaltools/mcp@latest"]
68
+
# }
69
+
# }
70
+
```
71
+
72
+
Then you can ask Claude things like:
73
+
74
+
- "Show me 5 tools for testing Drupal sites"
75
+
- "Search for Docker-based Drupal development tools"
0 commit comments