Skip to main content
Glama
physics91

AI API MCP Server

by physics91

Chat

chat

Send messages to AI models across providers (OpenAI, Anthropic, Google, Grok) and get responses using a single MCP interface.

Instructions

Chat with AI models from various providers

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelYesModel ID (e.g., 'gpt-4', 'claude-3-opus', 'gemini-pro')
streamNoWhether to stream the response
messagesYesList of message dicts with 'role' and 'content'
providerNoOptional provider name ('openai', 'anthropic', 'google', 'grok')
max_tokensNoMaximum tokens to generate
temperatureNoSampling temperature (0.0-2.0)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

C2.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full disclosure burden, yet it says nothing about latency, cost, rate limits, error behavior, or what streaming does to the response shape. The single sentence adds essentially no behavioral context for a network-calling mutation-like operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One short, front-loaded sentence with zero waste, but for a six-parameter tool with an output schema it is under-specified rather than genuinely concise. Brevity here reflects missing content, not editorial discipline.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema and full parameter descriptions reduce some burden, but the description supplies no usage context, no provider/model selection logic, and no behavioral notes for a tool that fans out to multiple external AI providers. It is not complete enough to guide confident invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents model, messages, stream, provider, max_tokens, and temperature. The description adds no parameter meaning beyond that, which earns the baseline 3 rather than credit.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description gives a verb+resource ('chat with AI models') but is generic and does not differentiate this tool from siblings like 'generate' or 'compare', which plausibly overlap. An agent cannot tell from the text whether this is single-turn, multi-turn, or streaming-oriented.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus 'generate', 'compare', or 'analyze'. The mention of 'various providers' hints at breadth but does not specify any selection criteria or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools