agentboard (Vladev0/agentboard) is an MCP server listed on the M8ven Trust Index. It scores 66 out of 100, grade C. It declares 17 tools. No publisher has claimed this listing.

C
Caution
66/100

agentboard

A local task tracker with Kanban board and MCP server for AI agents, enabling task management via markdown files and providing tools for agents to query and update tasks.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

Vladev0

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
🚨
Known vulnerabilities in dependencies: 1 critical, 2 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
// tools this server exposes17 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

list_projects

List every project in the vault with task counts by status. Does not return the tasks themselves — use list_tasks for that.

create_project

Create a new project in the vault. `key` is a short prefix for task IDs (e.g. WEB); it's derived from the name if omitted.

delete_project

Permanently delete a project — all of its tasks and history, unrecoverable. Only on an explicit human request, never on your own guess.

list_tasks

A lightweight list of a project's tasks (no descriptions/history/comments) — saves context. Use get_task for the details of one.

get_task

The full card for one task: description, versioned updates (the task's evolution), comments, technical activity, and subtasks. Request only when you need the details of a specific task.

get_next_task

Recommends the next task to work on: not blocked, not in the terminal status, lowest `order` first (ties broken by priority). With no `parent`, it searches the whole project at every depth — so nested-only work isn't missed; pass a `parent` id to scope the search to that task's direct subtasks. Use

create_task

Create a new top-level task in a project.

create_subtask

Create a subtask inside an existing task (to break a plan down without holding it all in your own context).

update_status

Change a task's status. This is routine bookkeeping — it goes into the task's technical activity, not its versioned updates.

set_needs_input

Flag (or unflag) a task as waiting on a human decision — independent of status, since work can stall at any stage of the pipeline, not just in a dedicated column. A task flagged this way stops being suggested by get_next_task. Once the human has answered (in a comment), clear it by calling again wit

update_task

Change fields on an existing task (title, priority, labels, order, blockers, assignee) without changing status and without creating an update — this is also routine bookkeeping, logged to technical activity. Pass only the fields you're changing.

update_description

Record a 'big update' to a task: rewrite the description once discussion/work has led to a decision about what should change. `summary` is a required short note on WHAT changed and WHY (like a commit message). Each call creates a new version with a full snapshot of the description — this builds the

add_comment

Leave a comment on a task — discussion, a clarifying question for the human, a passing remark while working. To actually change the task's substance (its description) once discussion has led somewhere, use update_description, not this.

list_notes

The index of the project's memory: one line per knowledge note (id, title, hook). Read this at the START of every session, before get_next_task — it's tiny, and it tells you what's already been settled so you don't re-derive or contradict it. Then get_note only the entries relevant to your current t

get_note

One knowledge note in full: body = the CURRENT truth (latest formulas, chosen approach), history = how it got there (versioned summaries — read these when you need to know why something changed). Notes are addressed by [[id]] wikilinks — when a task description mentions [[some-note]], this is how yo

upsert_note

Create or update a knowledge note — the project's memory. WHEN: you've just settled something reusable (a final formula, a validated approach, a decision and its why, a costly pitfall) — write it AT THAT MOMENT, don't wait for the task to close. Test: 'will a session that never saw this task need it

delete_task

Permanently delete a task (its file and all its history) — e.g. a duplicate, or a subtask that's no longer needed. Cascades to all of its subtasks. Irreversible — not for changing status, use update_status for that.

// known CVEs in dependencies1 critical2 high4 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

criticalvitest@2.1.9GHSA-5xrq-8626-4rwp

When Vitest UI server is listening, arbitrary file can be read and executed

high@fastify/static@7.0.4GHSA-83w8-p2f5-377r

@fastify/static vulnerable to route guard bypass via path traversal

highfastify@4.29.1GHSA-jx2c-rxcm-jvmq

Fastify's Content-Type header tab character allows body validation bypass

low@fastify/static@7.0.4GHSA-8pvw-jcv7-9cmj

@fastify/static vulnerable to Authorization Bypass via Non-Canonical URL Paths

lowfastify@4.29.1GHSA-444r-cwp2-x5xf

fastify: request.protocol and request.host Spoofable via X-Forwarded-Proto/Host from Untrusted Connections

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configAGENTBOARD_VAULTThe file is gitignored — every machine/fork keeps its own. /PORT env vars, if set, always take priority over the file.
Deployment configuration, supplied by whoever hosts the server. Users are not asked for these.
deployPORT
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

17/17 tools missing one or more hints — list_projects (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); create_project (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); delete_project (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +14 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Tool test coverage

Only 0/17 tools referenced in tests (0%)

Write tests that reference each tool by name so every tool has at least one test.

Production dependencies are patched

0 critical, 2 high severity in production deps — @fastify/static@7.0.4 (high), fastify@4.29.1 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Dev dependencies

1 critical/high in dev-only deps (does not ship to users)

Upgrade dev dependencies when convenient.

Dependency freshness

1/7 production deps stale: gray-matter@2023-07-12 (3.1y)

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 5 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/vladev0/agentboard?variant=verified)](https://m8ven.ai/mcp/vladev0/agentboard)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: e6a8a71849ce765759fc7a436fb11855a855f71c
code hash: e6f18fd36fad5013d6efcfe3c5700b1a2beb6a1fb1259d131e29fc14eccd4041
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client