# Knowtis (mcpb · knowtis-mcp-0.1.0.mcpb)

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

- Trust score: 48/100 (low)
- Change this week: −2
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `mcp.knowtis.app`: 40/100, [markdown](https://verifymcp.io/servers/app-knowtis-knowtis/mcp.md), [page](https://verifymcp.io/servers/app-knowtis-knowtis/mcp)
- mcpb · `knowtis-mcp-0.1.0.mcpb`: 48/100 (this document), [markdown](https://verifymcp.io/servers/app-knowtis-knowtis/https-github-com-jovandyaz-knowtis-app-releases-download-mcp-v0-1-0-knowtis-mcp.md), [page](https://verifymcp.io/servers/app-knowtis-knowtis/https-github-com-jovandyaz-knowtis-app-releases-download-mcp-v0-1-0-knowtis-mcp)

## Channel facts

- Registry: `mcpb`
- Package: `https://github.com/jovandyaz/knowtis-app/releases/download/mcp-v0.1.0/knowtis-mcp-0.1.0.mcpb`
- Transport: `stdio`

## Trust breakdown

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. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 13/100
  - Malware scan not yet available for this package.
  - CVE data not yet available for this package.
  - No install/post-install scripts declared.
  - Dependency-health data not yet available.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 24 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 79/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 668 tokens (~83/item across 8 items; 8 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

- Download bundle: `https://github.com/jovandyaz/knowtis-app/releases/download/mcp-v0.1.0/knowtis-mcp-0.1.0.mcpb`

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 48, +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.

### 2026-08-02 (score 47, +3)

- [functional improvement] Stability: unverified → 0.23

### 2026-07-31 (score 44, −6)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 50, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 50)

First indexed and scored.

## MCP tools (8)

### `list-notes` (~83 tokens)

List Notes

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

Input parameters:

- `cursor` (string): Opaque cursor from a previous list-notes call
- `limit` (integer): Page size (default 20)
- `search` (string): Search query to filter notes by title or content

Output parameters:

- `nextCursor` (string)
- `notes` (array)

### `search-notes` (~75 tokens)

Search Notes

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.

Input parameters:

- `limit` (integer): Maximum hits to return (default 20)
- `query` (string, required): What to look for, e.g. "budget decisions from June"

Output parameters:

- `hits` (array)

### `get-note` (~40 tokens)

Get Note

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

Input parameters:

- `noteId` (string, required): The UUID of the note to retrieve

Output parameters:

- `note` (object)

### `create-note` (~152 tokens)

Create Note

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 ... ```).

Input parameters:

- `content` (string): Note content in Markdown format. Use standard Markdown syntax for rich formatting.
- `title` (string, required): Title of the new note

Output parameters:

- `note` (object)

### `update-note` (~103 tokens)

Update Note

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).

Input parameters:

- `content` (string): New content in Markdown format. This replaces the entire note content.
- `noteId` (string, required): The UUID of the note to update
- `title` (string): New title

Output parameters:

- `note` (object)

### `delete-note` (~35 tokens)

Delete Note

Permanently delete a note. This action cannot be undone.

Input parameters:

- `noteId` (string, required): The UUID of the note to delete

Output parameters:

- `message` (string)
- `success` (boolean)

### `get-collaborators` (~42 tokens)

Get Collaborators

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

Input parameters:

- `noteId` (string, required): The UUID of the note

Output parameters:

- `collaborators` (array)

### `share-note` (~59 tokens)

Share Note

Share a note with another user by their user ID.

Input parameters:

- `noteId` (string, required): The UUID of the note to share
- `permission` (string, required): Permission level
- `userId` (string, required): The UUID of the user to share with

Output parameters:

- `success` (boolean)

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/app-knowtis-knowtis/https-github-com-jovandyaz-knowtis-app-releases-download-mcp-v0-1-0-knowtis-mcp#diagnostics

## Score history

- 2026-08-03: 48
- 2026-08-02: 47
- 2026-08-01: 44
- 2026-07-31: 44
- 2026-07-30: 50
- 2026-07-29: 50
- 2026-07-28: 50
- 2026-07-27: 50
- 2026-07-26: 50

## Links

- Repository: https://github.com/jovandyaz/knowtis-app
- Website: https://knowtis.app/
- Changelog RSS feed: https://verifymcp.io/servers/app-knowtis-knowtis/https-github-com-jovandyaz-knowtis-app-releases-download-mcp-v0-1-0-knowtis-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/app-knowtis-knowtis/https-github-com-jovandyaz-knowtis-app-releases-download-mcp-v0-1-0-knowtis-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/app-knowtis-knowtis/https-github-com-jovandyaz-knowtis-app-releases-download-mcp-v0-1-0-knowtis-mcp
