craft — MCP server exposing local block/document tools

draft — generated, polish on first use.

Category: mcp
Where it works: both
Source: ~/.mcp.json

What it is

MCP server that surfaces two local tools for retrieving blocks and listing documents. No built-in commands; invoked through natural language that maps to the underlying tools.

How to trigger it

  • “arată-mi blocurile”
  • “listează documentele”
  • “ce documente am”
  • “get blocks”
  • Direct command: none (tool calls only)
  • Auto-fires? no

How to use it

Operator mentions blocks or documents; craft routes the request to the matching tool (blocks_get or documents_list) and returns the raw result.

Practical examples

  1. you: “listează documentele” craft calls documents_list, returns list of available documents.
  2. you: “arată-mi blocurile” craft calls blocks_get, returns block data.

Tools

toolwhat it doesexample
blocks_getreturns stored blocksblocks_get()
documents_listlists available documentsdocuments_list()

Notes / limits

Requires MCP runtime; only exposes the two listed tools. No cost, local execution.