Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

Knowtis

MCPB · KNOWTIS-MCP-0.1.0.MCPB · 2 COMPONENTS · SCANNED AUG 3

Create, search and manage Knowtis collaborative notes from AI assistants.

−2 this week 48 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security13
  • Malware scan not yet available for this package.Unverified
  • CVE data not yet available for this package.Unverified
  • No install/post-install scripts declared.Pass
  • Dependency-health data not yet available.Unverified
Provenance & Transparency45
Schema Quality & AI Usability79
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 668 tokens (~83/item across 8 items; 8 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
  • Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

mcpb · knowtis-mcp-0.1.0.mcpb

Download bundle
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +3
    • Stability: unverified → 0.23 functional
  • 31 Jul 26 −6
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 27 Jul 26 0
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 26 Jul 26 50

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed mcpb/https://github.com/jovandyaz/knowtis-app/releases/download/mcp-v0.1.0/knowtis-mcp-0.1.0.mcpb

Provenance none

Ecosystem: mcpb · Outcome: none

MCP tools — 8 exposed · ~589 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
create-note ~152

Create a new note with a title and optional Markdown content. Supports: headings (#, ##, ###), **bold**, *italic*, ~~strikethrough~~, `inline code`, fenced code blocks (```lang), [links](url), lists (-, 1.), task lists (- [ ], - [x]), blockquotes (>), horizontal rules (---), GFM tables (| col | col |), highlight (==text==), superscript (^text^), subscript (~text~), and Mermaid diagrams (```mermaid ... ```).

NameTypeReqDescription
contentstringNote content in Markdown format. Use standard Markdown syntax for rich formatting.
titlestringyesTitle of the new note
NameTypeReqDescription
noteobjectyes

No examples provided.

delete-note ~35

Permanently delete a note. This action cannot be undone.

NameTypeReqDescription
noteIdstringyesThe UUID of the note to delete
NameTypeReqDescription
messagestringyes
successbooleanyes

No examples provided.

get-collaborators ~42

List who has access to a note and their permission level (owner, editor, viewer).

NameTypeReqDescription
noteIdstringyesThe UUID of the note
NameTypeReqDescription
collaboratorsarrayyes

No examples provided.

get-note ~40

Get the full content of a specific note by ID. Content is returned as Markdown.

NameTypeReqDescription
noteIdstringyesThe UUID of the note to retrieve
NameTypeReqDescription
noteobjectyes

No examples provided.

list-notes ~83

List user's notes ordered by recency. Use cursor from a previous call to fetch the next page; prefer search-notes for content lookup.

NameTypeReqDescription
cursorstringOpaque cursor from a previous list-notes call
limitintegerPage size (default 20)
searchstringSearch query to filter notes by title or content
NameTypeReqDescription
nextCursorstring
notesarrayyes

No examples provided.

search-notes ~75

Search across all accessible notes by meaning and keywords (hybrid full-text + semantic). Returns the most relevant notes; use get-note to read a result.

NameTypeReqDescription
limitintegerMaximum hits to return (default 20)
querystringyesWhat to look for, e.g. "budget decisions from June"
NameTypeReqDescription
hitsarrayyes

No examples provided.

share-note ~59

Share a note with another user by their user ID.

NameTypeReqDescription
noteIdstringyesThe UUID of the note to share
permissionstringyesPermission level
userIdstringyesThe UUID of the user to share with
NameTypeReqDescription
successbooleanyes

No examples provided.

update-note ~103

Update the title or content of an existing note. Content should be in Markdown format (same syntax supported as create-note: headings, bold/italic/strike/code, lists, task lists, tables, blockquotes, highlight, super/subscript, Mermaid diagrams).

NameTypeReqDescription
contentstringNew content in Markdown format. This replaces the entire note content.
noteIdstringyesThe UUID of the note to update
titlestringNew title
NameTypeReqDescription
noteobjectyes

No examples provided.