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
- you: “listează documentele” → craft calls
documents_list, returns list of available documents. - you: “arată-mi blocurile” → craft calls
blocks_get, returns block data.
Tools
| tool | what it does | example |
|---|---|---|
| blocks_get | returns stored blocks | blocks_get() |
| documents_list | lists available documents | documents_list() |
Notes / limits
Requires MCP runtime; only exposes the two listed tools. No cost, local execution.