lasuite-docs-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OIDC_SCOPE | No | OIDC scope | openid profile email |
| OIDC_OP_URL | Yes | Your provider's issuer URL | |
| DOCS_BASE_URL | Yes | Docs host, e.g. https://docs.example.org | |
| OIDC_AUDIENCE | No | only for §3.4 B; else leave empty | |
| OIDC_CLIENT_ID | Yes | the MCP client's id | |
| DOCS_API_PREFIX | No | API prefix | /external_api/v1.0 |
| OIDC_REDIRECT_URI | No | OIDC redirect URI | http://127.0.0.1:8765/callback |
| OIDC_CLIENT_SECRET | No | empty for public/PKCE; set for a confidential client |
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_current_userA | Return the authenticated user (GET /users/me/). |
| list_documentsC | List documents accessible to the user. |
| get_documentC | Retrieve a single document's metadata. |
| get_childrenC | List child (sub-)documents of a document. |
| list_versionsC | List stored versions of a document. |
| list_trashbinA | List soft-deleted documents in the trashbin. |
| list_favoritesB | List favorited documents. |
| create_documentB | Create a document. |
| update_documentB | Update a document's title and/or content (PATCH). |
| delete_documentB | Soft-delete a document (moves to trashbin). |
| restore_documentB | Restore a soft-deleted document from the trashbin. |
| move_documentC | Move a document under another document. |
| add_favoriteC | Mark a document as favorite. |
| remove_favoriteC | Remove a document from favorites. |
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 14 tools
Each tool has a clearly distinct purpose: create, delete, restore, move, update documents; listing different scopes (all, favorites, trashbin, versions); managing favorites; and user info. No overlapping functionality.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., create_document, list_favorites, get_document). No deviations or mixed conventions.
14 tools are well-scoped for document management, covering CRUD, navigation, versioning, favorites, and trashbin operations. The count fits the 3-15 sweet spot.
The set covers most core operations, but lacks a dedicated endpoint to retrieve the full document content—only metadata is returned by get_document. Minor gap considering the domain.