Connapse
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_filesA | List files and folders at a path within a container. Use to browse container contents before retrieving documents. |
| search_knowledgeA | Search a container using semantic, keyword, or hybrid mode. Returns ranked document chunks with scores. Use when answering questions from stored knowledge. |
| delete_fileA | Delete a file and all its chunks and vectors. To update a file, delete it first then re-upload with upload_file. |
| container_createA | Create a new container for organizing documents. Use when setting up a new knowledge domain or project. |
| container_deleteA | Delete a container. MinIO containers must be emptied first. Filesystem/S3/Azure files are not deleted — only the index is removed. |
| container_listA | List all containers with document counts. Use to discover available knowledge bases before searching. |
| bulk_uploadA | Upload up to 100 files in one call. Each file is parsed, chunked, and embedded. Returns per-file results. |
| bulk_deleteA | Delete up to 100 files in one call. Returns per-file success/failure results. |
| upload_fileA | Upload a file to be parsed, chunked, embedded, and made searchable. Provide either 'content' (base64) or 'textContent' (raw text), not both. |
| container_statsA | Get container statistics: document counts, chunk count, storage size, and embedding model info. |
| get_documentA | Retrieve a document's full text by ID or path. Returns extracted text for binary formats (PDF, DOCX, PPTX). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Each tool targets a distinct operation: container management, file operations, bulk actions, and search. No two tools have overlapping purposes; even delete_file and bulk_delete are clearly scoped by single vs batch.
All tools follow a consistent verb_noun snake_case pattern (e.g., container_create, upload_file, search_knowledge). No mixed conventions or vague verbs.
11 tools is well-scoped for a knowledge management server, covering container CRUD, file operations, bulk operations, and search. No redundancy or missing essential operations.
Covers most lifecycle operations: container create/list/delete, file upload/get/list/delete, bulk upload/delete, and search. Missing container update and folder creation, but these are minor gaps that agents can work around.