Skip to content

Commit b393faf

Browse files
Prepare for release 1.0.6
1 parent 6ae2def commit b393faf

File tree

4 files changed

+34
-60
lines changed

4 files changed

+34
-60
lines changed

mcp-package/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
## [1.0.6](https://github.com/drupaltools/drupaltools.github.io/compare/v1.0.6...v1.0.0) (2025-12-15)

mcp-package/dist/README.md

Lines changed: 2 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -50,62 +50,8 @@ bundle exec jekyll serve
5050

5151
## MCP Server
5252

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-
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"
76-
- "Tell me about BLT (Acquia Lightning) tool"
77-
78-
**Package name:** `@drupaltools/mcp`
79-
**Repository:** [mcp-package/](./mcp-package/)
80-
**Documentation:** [mcp-package/README.md](./mcp-package/README.md)
81-
82-
#### Option 2: Development Server (For Contributors)
83-
84-
Run locally from source for testing and development:
85-
86-
```bash
87-
npm install
88-
npm run mcp
89-
```
90-
91-
**Repository:** [mcp-server/](./mcp-server/)
92-
**Documentation:** [mcp-server/README.md](./mcp-server/README.md)
93-
94-
### Demo & Testing
95-
96-
Visit the demo page: [/mcp-server/](./mcp-server/index.html)
97-
98-
Or test with MCP Inspector:
99-
```bash
100-
npx @modelcontextprotocol/inspector node mcp-server/index.js
101-
```
102-
103-
### Available Tools
104-
105-
The MCP server provides three tools:
106-
- **`list_tools`**: List all tools with optional category filtering
107-
- **`search_tools`**: Semantic search for tools using intelligent scoring
108-
- **`get_tool`**: Get detailed information about a specific tool
53+
- [mcp-package/README.md](./mcp-package/README.md)
54+
- [mcp-server/README.md](./mcp-server/README.md)
10955

11056
## Similar tools
11157

mcp-package/dist/package.json

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@drupaltools/mcp",
3-
"version": "1.0.5",
3+
"version": "1.1.0",
44
"description": "Model Context Protocol (MCP) server for discovering Drupal development tools, utilities, and plugins",
55
"type": "module",
66
"main": "index.js",
@@ -14,7 +14,27 @@
1414
],
1515
"scripts": {
1616
"build": "node build.js",
17-
"test": "node dist/test.js"
17+
"test": "node dist/test.js",
18+
"prepublishOnly": "npm run build && npm test",
19+
"release": "standard-version",
20+
"release:minor": "standard-version --release-as minor",
21+
"release:major": "standard-version --release-as major",
22+
"release:patch": "standard-version --release-as patch",
23+
"release:auto": "./release.sh",
24+
"release:auto:minor": "./release.sh minor",
25+
"release:auto:major": "./release.sh major"
26+
},
27+
"standard-version": {
28+
"changelogFiles": [
29+
{
30+
"filename": "RELEASES.md",
31+
"type": "markdown"
32+
}
33+
],
34+
"skip": {
35+
"tag": true,
36+
"commit": true
37+
}
1838
},
1939
"keywords": [
2040
"mcp",
@@ -34,7 +54,7 @@
3454
"bugs": {
3555
"url": "https://github.com/drupaltools/drupaltools.github.io/issues"
3656
},
37-
"homepage": "https://github.com/drupaltools/drupaltools.github.io#readme",
57+
"homepage": "https://github.com/drupaltools/drupaltools.github.io/blob/master/mcp-package/README.md",
3858
"dependencies": {
3959
"@modelcontextprotocol/sdk": "^1.24.3",
4060
"js-yaml": "^4.1.1"
@@ -44,5 +64,8 @@
4464
},
4565
"publishConfig": {
4666
"access": "public"
67+
},
68+
"devDependencies": {
69+
"standard-version": "^9.5.0"
4770
}
4871
}

mcp-package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@drupaltools/mcp",
3-
"version": "1.1.0",
3+
"version": "1.0.6",
44
"description": "Model Context Protocol (MCP) server for discovering Drupal development tools, utilities, and plugins",
55
"type": "module",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)