loading…
Search for a command to run...
loading…
Enables building and managing knowledge workspaces with tools for ingesting content from text, clipboard, or URLs and searching organized knowledge bases. Suppo
Enables building and managing knowledge workspaces with tools for ingesting content from text, clipboard, or URLs and searching organized knowledge bases. Supports multiple configurable workspaces with separate inbox and knowledge directories for structured information management.
Standalone MCP server and library for building and managing knowledge workspaces.
Canonical behavior documentation lives in docs/chisel-knowledge-mcp.md.
npmnpm install
Import the workspace service and related types directly from the package root:
import { WorkspaceService, KnowledgeIndex } from '@teknologika/chisel-knowledge-mcp';
The MCP server remains available from the server subpath and through the published binary.
npm run build
npx tsc --noEmit
The server reads workspace configuration from:
~/.chisel/config.json
If the file does not exist, the server starts with zero configured workspaces and logs a warning to stderr. See config.example.json for the expected shape.
Use this MCP server with Claude Desktop by adding:
{
"mcpServers": {
"chisel-knowledge": {
"command": "npx",
"args": ["-y", "@teknologika/chisel-knowledge-mcp"]
}
}
}
chisel-knowledge-mcp.@teknologika/chisel-knowledge-mcp/server resolves to the MCP server entry point.Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"chisel-knowledge-mcp": {
"command": "npx",
"args": []
}
}
}