Skip to main content
Glama

humanMCP — kapoost

mysloodsiewnia_write

Ingest a new document into kapoost's vault (wave 2). OWNER-ONLY — friend tokens receive {status:write_denied,reason:owner_only}. Args: {doc_type (required), title (required), body (required, ≤100 KiB), source_path?, meta?}. Requires Authorization: Bearer . On Unauthorized: obtain the token by either (a) calling bootstrap_session(code=) and reading SESSION_TOKEN from the response briefing (1h TTL, preferred for agents that already know the code), or (b) if you have shell access on kapoost's Mac, running security find-generic-password -s humanmcp-edit-token -w to fetch the persistent EDIT_TOKEN. Server-side vault auto-tags via:humanmcp-bridge; op_id is dedup key (idempotent retries safe). Delete is permanently unavailable. Envelopes: {status:online, op_id, result:{slug, created_at}}, {status:invalid_args}, {status:payload_too_large, limit, got}, {status:offline}, {status:vault_timeout}, {status:vault_error, error}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes
metaNo
titleYes
doc_typeYes
source_pathNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changed
    • removedInput schema / properties / body / description
      Removed value: -"Document body, chunked + indexed by vault. Max 100 KiB."
    • removedInput schema / properties / doc_type / description
      Removed value: -"Vault doc_type (note / pdf / literatura / calendar_event / ...)."
    • removedInput schema / properties / meta / description
      Removed value: -"Optional metadata blob stored alongside the doc."
    • removedInput schema / properties / source_path / description
      Removed value: -"Optional source path (e.g. original filename)."
    • removedInput schema / properties / title / description
      Removed value: -"Human title, indexed for FTS."
  2. Added

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully carries the transparency burden. It discloses idempotency (op_id is dedup key), the permanent unavailability of delete, the 1-hour TTL for session tokens, and enumerates all possible response envelopes including error cases like vault_timeout and payload_too_large. This is exceptionally transparent behavior disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single dense paragraph with no fluff; every sentence provides operational value. However, it could benefit from structured bullets or sections (auth, args, response envelopes) to improve readability for an AI agent. Given the complexity, the length is warranted, but the structure could be clearer.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity, the description is remarkably complete. It covers authentication details (including two token retrieval methods), ownership restrictions, idempotency semantics, deletion policy, and every possible response envelope. No output schema exists, so the description fully explains return values, making it self-sufficient for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It lists all parameters (doc_type, title, body, source_path, meta) and adds constraints: body ≤100 KiB, source_path and meta are optional. It also notes meta is an object. However, it does not elaborate on allowed doc_type values or the internal structure of meta, leaving some semantics under-specified.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Ingest a new document into kapoost's vault (wave 2)', which clearly identifies the action (ingest/write) and the target resource (kapoost's vault). It also distinguishes itself from sibling tools like mysloodsiewnia_get, list, search, and status, making its role as the write operation explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides strong context by stating it is OWNER-ONLY and detailing the required Authorization: Bearer <owner token>. It explains how to obtain the token via bootstrap_session or shell command. However, it does not explicitly mention when to use this tool versus alternatives or when not to use it, though the context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.