Context Book
Stop re-explaining yourself to Agents.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение
Что умеет
- Book Create Or Update: Create a new Book or update an existing one. All fields (title, source, tags) are required. If book_id is omitted a new book is created and the new book_id is returned. If book_
- Book Get: Retrieve all pages of a Book in order by its book_id.
- Book List: List available Books. Returns metadata including book_id, title, and tags.
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Stop re-explaining yourself to Agents. Give it the right context, right when it needs it.
LLMs are stateless — each conversation starts from scratch. ContextBook gives your AI tools a persistent, searchable knowledge library to draw the right context when they need it. No bloatware, no pre-loaded junk. Just the right information, at the right time.
Список инструментов сервера (8)
Технические названия из tools/list. Нужны только разработчикам.
| book_create_or_update | Create a new Book or update an existing one. All fields (title, source, tags) are required. If book_id is omitted a new book is created and the new book_id is returned. If book_id is provided and exists, its metadata is replaced atomically. If book_id is provided but not found, a new book is created and a note is included in the response. Store the returned book_id in memory for future page operations. |
| book_get | Retrieve all pages of a Book in order by its book_id. |
| book_list | List available Books. Returns metadata including book_id, title, and tags. |
| page_delete | Permanently remove a page from a Book using its book_id and page_index. Note: Page indices will not be re-indexed after deletion (gaps are normal). |
| page_insert | Insert a page of text (≤1000 words) into a Book. Each page is an atomic, semantically meaningful chunk. Maintains retrieval quality via meaningful splitting and overlap. |
| page_search | Perform semantic search across all Books using a natural language query. Returns matching pages with their book_id and page_index. |
| page_update | Update a specific page within a Book using its book_id and page_index. Max content size: 1000 words. |
| readme | Returns the ContextBook usage guide. Call this once at the start of a session if you have not already loaded the instructions. |