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
Copy file name to clipboardExpand all lines: README.md
+47-8Lines changed: 47 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,23 +50,62 @@ bundle exec jekyll serve
50
50
51
51
## MCP Server
52
52
53
-
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