outline-mcp-server 4.8.3 → 4.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/package.json +5 -2
package/README.md
CHANGED
@@ -101,6 +101,24 @@ npm run start
|
|
101
101
|
npm run start:stdio
|
102
102
|
```
|
103
103
|
|
104
|
+
## Contributing
|
105
|
+
|
106
|
+
This project uses [semantic-release](https://semantic-release.gitbook.io/semantic-release/) for automated versioning and package publishing. Please follow the [Conventional Commits](https://www.conventionalcommits.org/) specification for your commit messages to ensure proper versioning.
|
107
|
+
|
108
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines on how to contribute to this project.
|
109
|
+
|
110
|
+
## Release Process
|
111
|
+
|
112
|
+
Releases are fully automated using semantic-release and GitHub Actions. When commits are pushed to the `master` branch, the following happens:
|
113
|
+
|
114
|
+
1. The CI pipeline runs tests and builds the package
|
115
|
+
2. semantic-release analyzes commit messages to determine the next version number
|
116
|
+
3. A new version is automatically published to npm
|
117
|
+
4. A GitHub release is created with auto-generated release notes
|
118
|
+
5. The CHANGELOG.md file is updated
|
119
|
+
|
120
|
+
No manual version bumping or release creation is needed.
|
121
|
+
|
104
122
|
## License
|
105
123
|
|
106
124
|
MIT
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "outline-mcp-server",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.9.0",
|
4
4
|
"description": "An MCP server for interacting with Outline's API",
|
5
5
|
"type": "module",
|
6
6
|
"bin": {
|
@@ -28,7 +28,7 @@
|
|
28
28
|
"start:stdio": "npm run build && echo 'build done. running...\n' && node build/index.js",
|
29
29
|
"start": "npx -y supergateway --port 6060 --stdio \"npm run start:stdio\"",
|
30
30
|
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
|
31
|
-
"release": "
|
31
|
+
"semantic-release": "semantic-release"
|
32
32
|
},
|
33
33
|
"dependencies": {
|
34
34
|
"@modelcontextprotocol/sdk": "0.6.0",
|
@@ -36,8 +36,11 @@
|
|
36
36
|
"dotenv": "16.4.7"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
|
+
"@semantic-release/changelog": "^6.0.3",
|
40
|
+
"@semantic-release/git": "^10.0.1",
|
39
41
|
"@types/node": "^20.11.24",
|
40
42
|
"prettier": "^3.2.5",
|
43
|
+
"semantic-release": "^22.0.12",
|
41
44
|
"typescript": "^5.3.3"
|
42
45
|
},
|
43
46
|
"keywords": [
|