veyra-notes
veyra-notes
タグフィルタリングと全文検索機能を備えた、AIエージェント向けの永続的なノートシステムMCPツールです。読み取りは常に無料です。書き込み操作にはVeyraのコミットモード認証が必要です。
概要
veyra-notesは、SQLiteをバックエンドとした信頼性の高いノート作成レイヤーをAIエージェントに提供します。エージェントは自由にノートの読み取り、一覧表示、検索を行うことができます。ノートの作成、更新、削除はVeyraコミットモードによって保護されており、意図的で説明責任のある書き込みを保証します。
インストール
npm install
npm run buildノートは~/.veyra-notes/data.dbに保存され、初回実行時に自動的に作成されます。
MCP設定 (Claude Desktop)
claude_desktop_config.jsonに以下を追加してください:
{
"mcpServers": {
"veyra-notes": {
"command": "node",
"args": ["/absolute/path/to/veyra-notes/dist/index.js"]
}
}
}ツール
ツール | 入力 | クラス | 価格 |
|
| — | 無料 |
|
| — | 無料 |
|
| — | 無料 |
|
| A | €0.005 |
|
| A | €0.005 |
|
| B | €0.02 |
例
読み取り (トークン不要)
// List all notes
{ "tool": "list_notes", "arguments": {} }
// List notes by tag
{ "tool": "list_notes", "arguments": { "tag": "project-x" } }
// Get a specific note
{ "tool": "get_note", "arguments": { "id": "1712345678-abc1234" } }
// Search across title, content, and tags
{ "tool": "search_notes", "arguments": { "query": "meeting notes" } }書き込み (Veyraトークンが必要)
// Create a note
{
"tool": "create_note",
"arguments": {
"title": "Sprint Planning",
"content": "Goals for this sprint: ...",
"tags": "work,planning",
"veyra_token": "vt_..."
}
}
// Update a note
{
"tool": "update_note",
"arguments": {
"id": "1712345678-abc1234",
"content": "Updated content...",
"veyra_token": "vt_..."
}
}
// Delete a note
{
"tool": "delete_note",
"arguments": {
"id": "1712345678-abc1234",
"veyra_token": "vt_..."
}
}トークンがない場合のエラーレスポンス
{
"error": "VeyraCommitRequired",
"message": "Write operations require Veyra commit mode.",
"currentMode": "open",
"requiredMode": "commit",
"transitionStrategy": "authorize_then_retry_with_x_veyra_token",
"provider": "veyra",
"authorize_endpoint": "https://api.veyra.to/v1/authorize-action",
"docs_url": "https://veyra.to"
}Veyraの仕組み
Veyraは、AIエージェント向けのコミットモード認証レイヤーです。エージェントが書き込み操作を試みると:
エージェントが
veyra_tokenなしでツールを呼び出すと、authorize_endpointを含むVeyraCommitRequiredエラーが返されます。エージェント(またはユーザー)が認証エンドポイントを呼び出し、トークンを取得します。
エージェントが
veyra_tokenを設定してツール呼び出しを再試行します。veyra-notesは書き込みを実行する前に、@veyrahq/sdk-nodeを介してトークンを検証します。
詳細なドキュメントについてはveyra.toを参照してください。
ライセンス
MIT
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Aquariosan/veyra-notes'
If you have feedback or need assistance with the MCP directory API, please join our Discord server