VOOZH about

URL: https://glama.ai/mcp/servers/Aquariosan/veyra-tasks?locale=ja-JP

⇱ veyra-tasks by Aquariosan | Glama


veyra-tasks

プロジェクトのグループ化、優先度、ステータス追跡機能を備えた、AIエージェント向けの永続的なタスクマネージャーMCPツールです。読み取りは常に無料です。書き込み操作にはVeyraのコミットモード認証が必要です。

概要

veyra-tasksは、SQLiteをバックエンドとした信頼性の高いタスク管理レイヤーをAIエージェントに提供します。エージェントはタスクのリスト表示や詳細確認を自由に行えます。タスクの作成、更新、完了、削除はVeyraコミットモードによって保護されており、意図的で説明責任のある書き込みを保証します。

Related MCP server: veyra-bookmarks

インストール

npm install
npm run build

タスクは~/.veyra-tasks/data.dbに保存され、初回実行時に自動的に作成されます。

MCP設定 (Claude Desktop)

claude_desktop_config.jsonに以下を追加してください:

{
 "mcpServers": {
 "veyra-tasks": {
 "command": "node",
 "args": ["/absolute/path/to/veyra-tasks/dist/index.js"]
 }
 }
}

ツール

ツール

入力

クラス

価格

list_tasks

{ status?, project?, priority? }

無料

get_task

{ id }

無料

create_task

{ title, description?, priority?, project?, due?, veyra_token? }

A

€0.005

update_task

{ id, status?, title?, priority?, veyra_token? }

A

€0.005

complete_task

{ id, veyra_token? }

A

€0.005

delete_task

{ id, veyra_token? }

B

€0.02

ステータスの値

todo · in_progress · done

優先度の値

low · medium · high · urgent

読み取り (トークン不要)

// List all tasks
{ "tool": "list_tasks", "arguments": {} }

// List in-progress tasks for a project
{ "tool": "list_tasks", "arguments": { "status": "in_progress", "project": "website" } }

// List urgent tasks
{ "tool": "list_tasks", "arguments": { "priority": "urgent" } }

// Get a specific task
{ "tool": "get_task", "arguments": { "id": "1712345678-abc1234" } }

書き込み (Veyraトークンが必要)

// Create a task
{
 "tool": "create_task",
 "arguments": {
 "title": "Fix login bug",
 "description": "Users cannot log in on mobile Safari",
 "priority": "urgent",
 "project": "website",
 "due": "2025-04-20",
 "veyra_token": "vt_..."
 }
}

// Update task status
{
 "tool": "update_task",
 "arguments": {
 "id": "1712345678-abc1234",
 "status": "in_progress",
 "veyra_token": "vt_..."
 }
}

// Mark a task done
{
 "tool": "complete_task",
 "arguments": {
 "id": "1712345678-abc1234",
 "veyra_token": "vt_..."
 }
}

// Delete a task
{
 "tool": "delete_task",
 "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エージェントのためのコミットモード認証レイヤーです。エージェントが書き込み操作を試みると:

  1. エージェントがveyra_tokenなしでツールを呼び出すと、authorize_endpointを含むVeyraCommitRequiredエラーが返されます。

  2. エージェント(またはユーザー)が認証エンドポイントを呼び出し、トークンを取得します。

  3. エージェントはveyra_tokenを設定してツール呼び出しを再試行します。

  4. veyra-tasksは書き込みを実行する前に@veyrahq/sdk-nodeを介してトークンを検証します。

詳細なドキュメントはveyra.toを参照してください。

ライセンス

MIT

ホスト型パック (推奨)

1つのURLで統合できるホスト型パックを推奨します:

{
 "mcpServers": {
 "veyra": {
 "url": "https://mcp.veyra.to/sse"
 }
 }
}

1つのURL。48個のツール。24個の無料読み取り。24個の保護された書き込み。

ホスト型パック: https://mcp.veyra.to/sse

パックマニフェスト: https://mcp.veyra.to/.well-known/veyra-pack.json

すべてのVeyraツールファミリーにわたって最速のMCP統合パスが必要な場合は、ホスト型パックを使用してください。 このツール単体が必要な場合は、このスタンドアロンパッケージを使用してください。

Veyraエコシステムの一部

Veyraは、本番環境のAIエージェントアクションのためのコミットモードです。 すべてのツール:読み取りは無料、書き込みにはVeyraコミットモードが必要です。

ツール

説明

インストール

veyra-memory

キーバリューストア

npm i -g veyra-memory

veyra-notes

タグ付きメモ作成

npm i -g veyra-notes

veyra-snippets

コードスニペット保存

npm i -g veyra-snippets

veyra-bookmarks

ブックマーク管理

npm i -g veyra-bookmarks

veyra-contacts

連絡先管理

npm i -g veyra-contacts

veyra-forms

フォームビルダー

npm i -g veyra-forms

veyra-webhooks

Webhook送信

npm i -g veyra-webhooks

SDK: npm install @veyrahq/sdk-node ウェブサイト: veyra.to

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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-tasks'

If you have feedback or need assistance with the MCP directory API, please join our Discord server