Meshnote

A persistent Markdown wiki that your AI agent maintains as long-term memory across sessions.

От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение

Что умеет

  • Append Log: Append an entry to wiki/log.md with a parseable header.
  • Get Index: Return the contents of wiki/index.md — the LLM-maintained catalog of the wiki.
  • List Page History: List saved versions of a wiki page. Previous content is auto-saved before every overwrite.

Какие данные видит

Нужен ли аккаунт

Не нужен: сервер работает без входа

A persistent Markdown wiki that your AI agent maintains as long-term memory across sessions.

Список инструментов сервера (16)

Технические названия из tools/list. Нужны только разработчикам.

append_logAppend an entry to wiki/log.md with a parseable header.
get_indexReturn the contents of wiki/index.md — the LLM-maintained catalog of the wiki.
list_page_historyList saved versions of a wiki page. Previous content is auto-saved before every overwrite.
get_backlinksReturn every page that links to the given target path.
read_pageReturn a wiki page's full content, frontmatter, metadata, and version token. Hand the returned 'version' back to write_page as 'base_version' so concurrent writers can't silently clobber each other.
list_pagesEnumerate wiki pages, optionally filtered by kind (entity, concept, summary, synthesis, index, log).
search_wikiBM25 search across wiki pages. Returns the top hits ordered by relevance.
list_sourcesEnumerate raw sources under raw/sources/.
get_graphReturn the full wiki link graph as nodes and edges, for synthesis operations.
get_schemaReturn the contents of the project's schema.md. An agent should call this first to learn how the user wants the wiki maintained.
create_projectCreate a new meshnote project (brain) with the given name and template. Templates: custom, research, book, personal, business.
read_sourceReturn the full content of a raw source file.
list_projectsList all meshnote projects registered on this machine.
restore_pageRestore a wiki page to a previous version. The current content is saved to history first, so nothing is lost. Use list_page_history to find available versions. Bypasses the base_version check by design — restore is an explicit overwrite.
write_pageCreate or overwrite a wiki page atomically. Path must live under wiki/. Use base_version to prevent silently clobbering a concurrent edit: - To UPDATE an existing page: call read_page first and pass its 'version' as base_version. If another writer modified the page in between, the call fails with a CONFLICT error; re-read and retry. - To CREATE a new page: pass base_version="" (empty string) to assert the page does not exist yet. (If base_version is omitted entirely, a new page is still created; only updating an existing page requires the token.) Previous content is auto-saved to _history/ — use list_page_history to see saved versions. The result lists any 'unresolved_links' — wikilinks on this page that match no existing page by title, path or slug. That is a warning, not an error: linking to a page you have not written yet is fine. Check it for typos before moving on.
register_sourceDownload a URL and register it as a raw source. Does not call any LLM — the agent decides what to do next. When preserveOriginal is true, the bytes are saved verbatim with the original extension (e.g. paper.pdf) plus a sidecar paper.pdf.meta.md with frontmatter.