anaplan-user-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ANAPLAN_PASSWORD | No | Anaplan password for basic auth | |
| ANAPLAN_USERNAME | No | Anaplan username for basic auth | |
| ANAPLAN_CLIENT_ID | No | Anaplan OAuth client ID | |
| ANAPLAN_CLIENT_SECRET | No | Anaplan OAuth client secret (optional for device grant) | |
| ANAPLAN_CERTIFICATE_PATH | No | Path to certificate file for certificate auth | |
| ANAPLAN_PRIVATE_KEY_PATH | No | Path to private key file for certificate auth |
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 |
|---|---|
| identify_userA | List the Anaplan workspaces accessible to the current credentials. Call this first to understand what the user can see. |
| init_sessionA | Scan all accessible models, admit only those with AI Model Metadata and AI Module Metadata sentinel modules, cache their modules and tagged line items. Must be called once before any data-reading tool. |
| list_accessible_modelsA | List all AI-layer models from the session cache with their modules and line item counts. Requires init_session. |
| read_module_summaryA | Read a pre-computed rollup of a module's data. Automatically resolves list dimensions to their topLevelItem for aggregated results. One call returns line item metadata + cell data. |
| read_module_detailA | Read module data with explicit page selections to drill into a specific slice. Use when the user asks to filter by a specific dimension member instead of the top-level rollup. |
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 5 tools
Each tool targets a distinct step in the workflow: user identification, session initialization, model listing, summary read, and detail read. The two read tools are clearly differentiated by rollup vs. explicit page selection, so no ambiguity.
All tool names follow a consistent verb_noun snake_case pattern (identify_user, init_session, list_accessible_models, read_module_summary, read_module_detail). The verbs are all in imperative form and the nouns are clear.
With 5 tools, the server is well-scoped for a read-only Anaplan user/MCP workflow. Each tool is necessary and there is no redundancy or excessive surface area.
The tool set covers the full lifecycle from user identification through session initialization, model listing, and both aggregate and detailed data reading. No obvious gaps for the stated purpose of read-only access and data extraction.