Knowtis
MCPB · KNOWTIS-MCP-0.1.0.MCPB · 2 COMPONENTS · SCANNED AUG 3
Create, search and manage Knowtis collaborative notes from AI assistants.
Available components
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
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 24 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
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
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 bundleEvery 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.
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
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.
create-note 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 ... ```).
| Name | Type | Req | Description |
|---|---|---|---|
| content | string | — | Note content in Markdown format. Use standard Markdown syntax for rich formatting. |
| title | string | yes | Title of the new note |
| Name | Type | Req | Description |
|---|---|---|---|
| note | object | yes | — |
No examples provided.
delete-note Delete Note ~35
Permanently delete a note. This action cannot be undone.
| Name | Type | Req | Description |
|---|---|---|---|
| noteId | string | yes | The UUID of the note to delete |
| Name | Type | Req | Description |
|---|---|---|---|
| message | string | yes | — |
| success | boolean | yes | — |
No examples provided.
get-collaborators Get Collaborators ~42
List who has access to a note and their permission level (owner, editor, viewer).
| Name | Type | Req | Description |
|---|---|---|---|
| noteId | string | yes | The UUID of the note |
| Name | Type | Req | Description |
|---|---|---|---|
| collaborators | array | yes | — |
No examples provided.
get-note Get Note ~40
Get the full content of a specific note by ID. Content is returned as Markdown.
| Name | Type | Req | Description |
|---|---|---|---|
| noteId | string | yes | The UUID of the note to retrieve |
| Name | Type | Req | Description |
|---|---|---|---|
| note | object | yes | — |
No examples provided.
list-notes 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.
| Name | Type | Req | Description |
|---|---|---|---|
| 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 |
| Name | Type | Req | Description |
|---|---|---|---|
| nextCursor | string | — | — |
| notes | array | yes | — |
No examples provided.
search-notes 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.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | — | Maximum hits to return (default 20) |
| query | string | yes | What to look for, e.g. "budget decisions from June" |
| Name | Type | Req | Description |
|---|---|---|---|
| hits | array | yes | — |
No examples provided.
share-note Share Note ~59
Share a note with another user by their user ID.
| Name | Type | Req | Description |
|---|---|---|---|
| noteId | string | yes | The UUID of the note to share |
| permission | string | yes | Permission level |
| userId | string | yes | The UUID of the user to share with |
| Name | Type | Req | Description |
|---|---|---|---|
| success | boolean | yes | — |
No examples provided.
update-note 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).
| Name | Type | Req | Description |
|---|---|---|---|
| content | string | — | New content in Markdown format. This replaces the entire note content. |
| noteId | string | yes | The UUID of the note to update |
| title | string | — | New title |
| Name | Type | Req | Description |
|---|---|---|---|
| note | object | yes | — |
No examples provided.