@n24q02m/better-notion-mcp 1.0.3 → 1.0.5

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.
Files changed (2) hide show
  1. package/README.md +13 -21
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -64,11 +64,6 @@ This MCP server transforms Notion's 28+ atomic REST API endpoints into **7 mega
64
64
  }
65
65
  ```
66
66
 
67
- ## 📚 Documentation
68
-
69
- - **[Changelog](CHANGELOG.md)** - Version history and changes
70
- - **[Security Policy](SECURITY.md)** - How to report security vulnerabilities
71
-
72
67
  ## 🔑 Get Notion Token
73
68
 
74
69
  1. Visit <https://www.notion.so/my-integrations>
@@ -253,27 +248,24 @@ npm run docker:build
253
248
  npm run docker:run
254
249
  ```
255
250
 
256
- ## 📄 License
251
+ ## 🤝 Contributing
257
252
 
258
- MIT License - See [LICENSE](LICENSE)
253
+ We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
259
254
 
260
- ## 🙏 Acknowledgments
255
+ ### Quick Start for Contributors
261
256
 
262
- - **Built With**:
263
- - [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/sdk) - MCP framework
264
- - [@notionhq/client](https://github.com/makenotion/notion-sdk-js) - Official Notion SDK
257
+ 1. Fork the repository
258
+ 2. Create a feature branch: `git checkout -b feature/your-feature`
259
+ 3. Make your changes following our [commit conventions](CONTRIBUTING.md#commit-convention)
260
+ 4. Run tests: `npm test`
261
+ 5. Submit a pull request
265
262
 
266
- ## 📞 Support & Community
263
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.
267
264
 
268
- - 🐛 [Report Bugs](https://github.com/n24q02m/better-notion-mcp/issues/new?template=bug_report.yml)
269
- - 💡 [Request Features](https://github.com/n24q02m/better-notion-mcp/issues/new?template=feature_request.yml)
270
- - ⭐ [Star this repo](https://github.com/n24q02m/better-notion-mcp) if you find it useful!
265
+ ## 📦 Releases
271
266
 
272
- ## 🔗 Links
267
+ See [CHANGELOG.md](CHANGELOG.md) for release history.
273
268
 
274
- - [npm Package](https://www.npmjs.com/package/@n24q02m/better-notion-mcp)
275
- - [Docker Hub](https://hub.docker.com/r/n24q02m/better-notion-mcp)
276
- - [GitHub Repository](https://github.com/n24q02m/better-notion-mcp)
277
- - [Notion API Documentation](https://developers.notion.com)
278
- - [Model Context Protocol](https://modelcontextprotocol.io)
269
+ ## 📄 License
279
270
 
271
+ MIT License - See [LICENSE](LICENSE)
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "ai-agent",
9
9
  "composite-tools"
10
10
  ],
11
- "version": "1.0.3",
11
+ "version": "1.0.5",
12
12
  "license": "MIT",
13
13
  "type": "module",
14
14
  "scripts": {
@@ -68,4 +68,5 @@
68
68
  "url": "https://github.com/n24q02m/better-notion-mcp/issues"
69
69
  },
70
70
  "homepage": "https://github.com/n24q02m/better-notion-mcp#readme"
71
- }
71
+
72
+ }