🎉 Initial release of Obsidian MCP Server plugin
Core Features:
- MCP server implementation with HTTP transport
- JSON-RPC 2.0 message handling
- Protocol version 2024-11-05 support
MCP Tools:
- read_note, create_note, update_note, delete_note
- search_notes, list_notes, get_vault_info
Server Features:
- Configurable HTTP server (default port: 3000)
- Health check and MCP endpoints
- Auto-start option
Security:
- Origin header validation (DNS rebinding protection)
- Optional Bearer token authentication
- CORS configuration
UI:
- Settings panel with full configuration
- Status bar indicator and ribbon icon
- Start/Stop/Restart commands
Documentation:
- Comprehensive README with examples
- Quick Start Guide and Implementation Summary
- Test client script
22 lines
895 B
Markdown
22 lines
895 B
Markdown
---
|
|
trigger: always_on
|
|
description: Official documentation and reference links
|
|
---
|
|
|
|
# References
|
|
|
|
## Official Resources
|
|
|
|
- **Obsidian sample plugin**: https://github.com/obsidianmd/obsidian-sample-plugin
|
|
- **API documentation**: https://docs.obsidian.md
|
|
- **Developer policies**: https://docs.obsidian.md/Developer+policies
|
|
- **Plugin guidelines**: https://docs.obsidian.md/Plugins/Releasing/Plugin+guidelines
|
|
- **Style guide**: https://help.obsidian.md/style-guide
|
|
- **Manifest validation**: https://github.com/obsidianmd/obsidian-releases/blob/master/.github/workflows/validate-plugin-entry.yml
|
|
|
|
## When to Consult
|
|
|
|
- Check **Developer policies** before implementing features that access external services
|
|
- Review **Plugin guidelines** before submitting to the community catalog
|
|
- Reference **API documentation** when using Obsidian APIs
|
|
- Follow **Style guide** for UI text and documentation |