Shoanta MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SHOANTA_API_URL | Yes | Shoanta base URL, e.g. https://shoanta.jullury.com | |
| SHOANTA_API_TOKEN | Yes | API token created in Workspace Settings → API tokens |
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
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_collectionsA | List all collections (databases) in the Shoanta workspace. |
| list_documentsA | List all documents in a collection. |
| get_documentA | Get a single document by ID, including its property values. |
| create_documentC | Create a new document in a collection. |
| update_documentA | Update document title, content, and/or property values. Only provided fields are changed. |
| delete_documentA | Delete a document. If archive is true, it is moved to trash instead of being permanently deleted. |
| list_commentsB | List comments on a document. |
| add_commentB | Add a comment to a document. |
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 8 tools
Each tool targets a distinct resource and action combination: collections, documents, and comments are clearly separated, and list/get/create/update/delete/add all have unique meanings. There is no practical ambiguity between tools.
Tool names consistently follow a snake_case verb_noun pattern. The only slight variation is add_comment versus create_document, but add is still a clear action verb in the same style, so the naming remains predictable.
Eight tools is a well-scoped number for a document workspace with collections, documents, and comments. Each tool serves a necessary purpose without redundancy or unnecessary bloat.
Documents have full CRUD coverage, and collections and comments have basic list/create operations. Minor gaps include lack of comment updating/deleting, collection management beyond listing, and document search, but these can be worked around with the existing tools.