Open-source command-line client for the NestorNotes knowledge base. Auditable thin wrapper around the hosted MCP server.
Project description
nestornotes
Open-source command-line client for NestorNotes — your AI-powered knowledge base.
This CLI is a thin, auditable wrapper that talks to the hosted NestorNotes MCP server over the Model Context Protocol. Every line of code that runs on your machine is in this repository — read it before you install.
| Surface | Source | License |
|---|---|---|
| CLI client (this repo) | src/nestornotes/cli.py, npm/ |
MIT (open source) |
| MCP server (hosted) | Proprietary, runs at https://mcp.nestornotes.com/mcp |
Closed source |
The CLI is generated from the server's tool registry by fastmcp generate-cli — cli.py is regenerated each release and pushed here via PR. You can verify by reading the file directly: it's plain Python, no obfuscation.
Install
Via PyPI (recommended)
uv tool install nestornotes # or: pipx install nestornotes
nestornotes --help
Run ephemerally without installing: uvx nestornotes --help.
Upgrade: uv tool upgrade nestornotes (or pipx upgrade nestornotes).
Via npm
npm install -g nestornotes # requires `uv` on PATH (https://astral.sh/uv)
The npm package is a thin Node.js wrapper that proxies to the matching PyPI wheel via uvx — same Python code, different distribution channel.
Usage
nestornotes call-tool list_collections
nestornotes call-tool semantic_search --query "rust async"
nestornotes call-tool list_articles --collection-id <uuid> --limit 5
By default the CLI talks to https://mcp.nestornotes.com/mcp. Override per-environment:
NESTORNOTES_SERVER_URL=http://localhost:8000/mcp nestornotes call-tool list_collections
OAuth is handled automatically by FastMCP: the first tool call opens a browser for Supabase sign-in; the token is cached locally.
What this CLI does (and doesn't)
- Does: Parse your shell arguments → open an HTTPS connection to the configured MCP server → forward your call → print the JSON response.
- Does not: Execute any business logic locally. Cache anything but OAuth tokens. Send telemetry. Talk to anything other than the configured
NESTORNOTES_SERVER_URL.
You can verify all of the above by reading src/nestornotes/cli.py — it imports cyclopts (for argument parsing), fastmcp (for the MCP client), and rich (for output). That's it.
How updates happen
This repo is not hand-edited. When the NestorNotes server adds, changes, or removes a tool, an automated PR appears here with the regenerated cli.py. The PR contains exactly two artifact files (plus version bumps) — src/nestornotes/cli.py and src/nestornotes/SKILL.md — so you can diff each release against the previous one to see what changed.
Each release is tagged vX.Y.Z and triggers PyPI + npm publication via GitHub Actions (release.yml).
Verifying what you install
nestornotes --version
gh release view vX.Y.Z --repo nestornotes/nestornotes-cli
pip download --no-deps nestornotes==X.Y.Z
unzip -l nestornotes-X.Y.Z-py3-none-any.whl
The wheel contains exactly three files: __init__.py, cli.py, SKILL.md. Nothing more.
License
MIT. See LICENSE.
The CLI is open source. The MCP server it talks to is proprietary — but the interface (every tool name, parameter, and docstring) is fully documented here in cli.py.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nestornotes-0.2.0.tar.gz.
File metadata
- Download URL: nestornotes-0.2.0.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
919036b5689d46c1b27cfc4fd56f9a1d139a319c5a13554e6f4ebd86a7948d1b
|
|
| MD5 |
979c6a407c5c85708325914a834a1d85
|
|
| BLAKE2b-256 |
889e891def8a9345b13c00972f444a92913ff39f61b2cc740ba5a06232ebb9d0
|
Provenance
The following attestation bundles were made for nestornotes-0.2.0.tar.gz:
Publisher:
release.yml on Nestornotes/nestornotes-cli
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nestornotes-0.2.0.tar.gz -
Subject digest:
919036b5689d46c1b27cfc4fd56f9a1d139a319c5a13554e6f4ebd86a7948d1b - Sigstore transparency entry: 1736994190
- Sigstore integration time:
-
Permalink:
Nestornotes/nestornotes-cli@d3753c42faaf832687a8ee8f6078e097756a9a17 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Nestornotes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d3753c42faaf832687a8ee8f6078e097756a9a17 -
Trigger Event:
push
-
Statement type:
File details
Details for the file nestornotes-0.2.0-py3-none-any.whl.
File metadata
- Download URL: nestornotes-0.2.0-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46ef43c586a14162a144c9d4830489a0e2f8a26328068f7c38bb27b7c382275b
|
|
| MD5 |
4b4e0d57f41f9fcc1829cdff5eb2eba4
|
|
| BLAKE2b-256 |
9f343fca41404ac0101d32694ce40ca2edcd2527f8468470f69d1b6eb83ba294
|
Provenance
The following attestation bundles were made for nestornotes-0.2.0-py3-none-any.whl:
Publisher:
release.yml on Nestornotes/nestornotes-cli
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nestornotes-0.2.0-py3-none-any.whl -
Subject digest:
46ef43c586a14162a144c9d4830489a0e2f8a26328068f7c38bb27b7c382275b - Sigstore transparency entry: 1736994273
- Sigstore integration time:
-
Permalink:
Nestornotes/nestornotes-cli@d3753c42faaf832687a8ee8f6078e097756a9a17 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Nestornotes
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d3753c42faaf832687a8ee8f6078e097756a9a17 -
Trigger Event:
push
-
Statement type: