Universal Adapter
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_HOST | No | Host for MCP server (default: 0.0.0.0). | |
| MCP_PORT | No | Port for MCP server (default: 8002). | |
| MONGODB_URI | No | MongoDB connection string. Defaults to mongodb://localhost:27017/agent_db if not set. | |
| VOYAGE_API_KEY | No | Optional API key from Voyage AI for semantic tool search embeddings. App works without it. | |
| FIRECRAWL_API_KEY | Yes | API key from Firecrawl.dev (required for web search/scrape). | |
| OPENROUTER_API_KEY | Yes | API key from OpenRouter.ai (required for chat). |
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 |
|---|---|
| chatA | Chat with the Universal Adapter agent. The agent has access to all marketplace tools including:
Args: message: Your question or command conversation_id: Optional conversation ID for multi-turn chat model: LLM model to use (default: claude-haiku-4.5) max_iterations: Maximum agent iterations (default: 25) Returns: dict: Response with agent output, conversation_id, usage stats |
| list_marketplace_toolsA | List available tools in the marketplace. Args: limit: Maximum number of tools to return Returns: dict: List of tools with names and descriptions |
| healthA | Check if the MCP server is healthy |
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 3 tools
The three tools serve completely distinct purposes: interactive chat, listing marketplace tools, and health checking. There is no overlap or ambiguity between them.
Naming is a mix of a bare verb (chat), a noun (health), and a verb_noun phrase (list_marketplace_tools). This is not a consistent pattern, though all names are lowercase with underscores and are readable.
Three tools is an appropriate scope for an adapter server whose primary interface is a chat agent. Each tool has a clear role and none feels superfluous.
The chat tool exposes broad marketplace capabilities, and list_marketplace_tools provides discovery. A minor gap is the lack of a direct get-tool-details endpoint, but this is not critical since chat can retrieve such information.