DreamingAI MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DREAMINGAI_APP_ID | No | Application identifier for the client. | dreamingai |
| DREAMINGAI_API_KEY | Yes | Your DreamingAI API key. | |
| DREAMINGAI_BASE_URL | No | The URL of your DreamingAI instance. | https://dreamingai.exmay.com |
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_conversationsC | List all chat conversations/sessions in DreamingAI |
| create_conversationB | Create a new chat conversation/session in DreamingAI |
| delete_conversationB | Delete a chat conversation/session from DreamingAI |
| get_conversation_historyB | Get the message history for a specific conversation in DreamingAI |
| send_messageB | Send a message to a DreamingAI conversation and get an AI response |
| list_agentsB | List all available AI agents in DreamingAI |
| get_agentA | Get details of a specific AI agent in DreamingAI |
| create_agentA | Create a new AI agent in DreamingAI with custom role and behavior |
| update_agentA | Update an existing AI agent's configuration in DreamingAI |
| delete_agentB | Delete an AI agent from DreamingAI |
| list_promptsB | List all prompt templates in DreamingAI |
| get_promptA | Get details of a specific prompt template in DreamingAI |
| create_promptC | Create a new prompt template in DreamingAI |
| update_promptA | Update an existing prompt template in DreamingAI |
| delete_promptB | Delete a prompt template from DreamingAI |
| list_modelsA | List all available AI models and platforms in DreamingAI |
| get_modelA | Get details and capabilities of a specific AI model in DreamingAI |
| switch_modelC | Switch the active AI model for conversations in DreamingAI |
| list_pluginsB | List all available plugins in DreamingAI marketplace |
| install_pluginB | Install a plugin from the DreamingAI marketplace |
| activate_pluginA | Activate an installed plugin in DreamingAI |
| deactivate_pluginB | Deactivate an active plugin in DreamingAI |
| uninstall_pluginB | Uninstall a plugin from DreamingAI |
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 23 tools
Each tool targets a distinct resource and action, with clear separation between prompts, conversations, agents, models, and plugins. No two tools appear to perform the same operation, and even similar verbs like 'list' and 'get' are differentiated by whether they return all items or a single item.
All tool names follow a consistent verb_noun pattern in snake_case, with verbs like get, list, create, update, delete, send, switch, install, activate, deactivate, and uninstall. The pattern is uniform across all five domains, making the API predictable and easy to navigate.
With 23 tools, the server is slightly above the typical 3-15 tool range, but this is justified by the breadth of functionality covering prompts, conversations, agents, models, and plugins. Each tool corresponds to a meaningful operation, and the count feels appropriate for the comprehensive scope.
The tool surface provides complete CRUD and lifecycle coverage for prompts, agents, and plugins, plus conversation management including history and messaging, and model listing/selection. There are no obvious dead ends; all core workflows for managing an AI platform are represented.