Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Models: `neurostack-ask` (RAG), `neurostack-search` (hybrid), `neurostack-tiered
| `neurostack serve` | Start MCP server. `--transport stdio\|sse\|http`, `--host`, `--port` |
| `neurostack api` | Start OpenAI-compatible HTTP API. `--host`, `--port` |

## MCP Tools (20 tools)
## MCP Tools (24 tools)

### Search & Retrieval
- `vault_search(query, top_k, mode, depth, context, workspace)` - Hybrid search with tiered depth
Expand Down Expand Up @@ -144,6 +144,12 @@ Models: `neurostack-ask` (RAG), `neurostack-search` (hybrid), `neurostack-tiered
- `vault_session_start(source_agent, workspace)` - Begin memory session
- `vault_session_end(session_id, summarize, auto_harvest)` - End session

### Vault Files (raw markdown CRUD over MCP)
- `vault_read_file(path)` - Read a .md file under vault_root
- `vault_list_files(directory, pattern, recursive)` - List .md files (hidden segments excluded)
- `vault_write_file(path, content, commit_message)` - Create/overwrite a .md file; commits + pushes origin/main. Hard-rejects writes without required frontmatter (`date`, `tags`, `type`). On push conflict: `git pull --rebase --autostash` + retry once, then rollback.
- `vault_delete_file(path, commit_message)` - Delete a .md file; commits + pushes origin/main

## Global Flags

All query commands support `--json` for machine-readable output:
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neurostack",
"version": "0.13.0",
"version": "0.14.0",
"description": "Build, maintain, and search your knowledge vault with AI",
"bin": {
"neurostack": "bin/neurostack.js",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "neurostack"
version = "0.13.0"
version = "0.14.0"
description = "Build, maintain, and search your knowledge vault. CLI + MCP server with stale note detection, semantic search, and neuroscience-grounded memory."
readme = "README.md"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/neurostack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright (c) 2024-2026 Raphael Southall
"""NeuroStack — AI-provider-agnostic, neuroscience-grounded knowledge management."""

__version__ = "0.12.1"
__version__ = "0.14.0"
1 change: 1 addition & 0 deletions src/neurostack/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def ensure_registered() -> ToolRegistry:
global _registered
if not _registered:
from . import (
file_tools, # noqa: F401
insight_tools, # noqa: F401
memory_tools, # noqa: F401
search_tools, # noqa: F401
Expand Down
Loading
Loading