@aiiq/mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@aiiq/mcpshow me the top 10 AI models by IQ"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@aiiq/mcp
Model Context Protocol server for AI IQ — query AI model IQ, rankings, applied-capability domains, benchmarks, and methodology from any MCP client (Claude Code, etc.).
Read-only. Talks to the public AI IQ API over HTTPS; no API key required.
Install
Requires Node.js 18+. No API key needed. Works in any MCP client.
Claude Code (one command):
claude mcp add aiiq -- npx -y @aiiq/mcp # add --scope user for all projectsClaude Desktop — edit claude_desktop_config.json (Settings → Developer → Edit Config) and add:
{
"mcpServers": {
"aiiq": { "command": "npx", "args": ["-y", "@aiiq/mcp"] }
}
}Then fully quit and reopen the app. (If Node is managed by nvm/asdf, use the absolute path to npx
as the command, since the desktop app doesn't inherit your shell PATH.)
Cursor / Windsurf / other clients — same JSON in the client's MCP config:
{ "mcpServers": { "aiiq": { "command": "npx", "args": ["-y", "@aiiq/mcp"] } } }Related MCP server: TokenLab MCP Server
Tools
list_models— all public models with IQ, 7 dimension scores, emotional reasoning, rank, costget_model— full detail for one model (incl. per-benchmark results)list_rankings— available leaderboards with ids, names, model counts, and URLsget_ranking— ordered models for one ranking idlist_domains— applied-capability domains and benchmark countsget_domain— model composite IQs and benchmark leaderboards for one domainlist_benchmarks— benchmark catalogget_methodology— how AI IQ is computedcompare_models— side-by-side detail for several models
Config
AIIQ_API_BASE— override the versioned API base URL (defaulthttps://www.aiiq.org/api/v1). A custom value must be the API root that contains paths such as/modelsand/rankings.
Development
pnpm install
pnpm test
pnpm buildLicense
MIT
Available Tools
7 toolscompare_modelsCompare modelsA
Side-by-side detail for several models by id/name. Unknown ids are reported, not fatal.
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | Two or more model ids/names to compare |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that unknown IDs are reported without fatality, but lacks details on output format, read-only status, or limits on number of models.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with essential information, front-loaded with the action. No unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter comparison tool with no output schema, the description adequately covers purpose, error handling, and scope.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is high (100%), baseline is 3. The description adds value by noting how unknown IDs are handled, which relates directly to the parameter behavior.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Side-by-side detail' (compare) and resource 'models by id/name', and distinguishes from sibling tools like get_model (single model) and list_models (list without comparison). It also notes error handling behavior.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use (comparing multiple models) and provides helpful context about unknown IDs being non-fatal, but does not explicitly state when not to use or name alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_methodologyGet methodologyB
How AI IQ is computed (methodology version + summary).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description should disclose behavioral traits. It indicates the tool returns methodology version and summary but does not explicitly state that it is read-only or any other behavioral aspects beyond what can be inferred.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that efficiently conveys the tool's purpose without extraneous words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema, so the description should provide a more complete picture of the return value. It mentions 'version + summary' but does not specify format or structure, leaving the agent with insufficient detail.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has no parameters, so the description adds no semantic meaning beyond the schema. This is adequate given the schema coverage is 100%.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool provides methodology details for AI IQ computation, including version and summary. It distinguishes itself from sibling tools which focus on models, benchmarks, and rankings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. The description simply states what it does without providing context or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_modelGet model detailA
Full detail for one model by id/name, including per-benchmark results and dimension coverage.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Model id or name, e.g. 'gpt-5.5' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must convey behavioral traits. It states the output includes per-benchmark results and dimension coverage, but does not address authorization, side effects, or error conditions. Basic but adequate for a read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that is front-loaded and concise, containing no redundant information while covering the core functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With one parameter and no output schema, the description adequately explains the return values and scope. It is sufficient for a simple retrieval tool, though it could mention error handling or existence guarantees.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The tool description does not add additional parameter semantics beyond what the schema already provides (e.g., id example).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description explicitly states the tool retrieves full details for one model by id or name, including per-benchmark results and dimension coverage, clearly distinguishing it from siblings like list_models or compare_models.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when needing detailed information for a single model, but lacks explicit guidance on when not to use or alternatives, though the tool name and sibling differentiation provide context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_rankingGet rankingA
The ordered models for one ranking id (from list_rankings).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Ranking id, e.g. 'composite-iq' or 'coding-iq' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description must convey all behavioral traits. It only states the core function (getting ordered models) without disclosing behavior on invalid IDs, data freshness, rate limits, or whether it is read-only, which is assumed but not stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence with no unnecessary words, making it highly concise and front-loaded with the essential purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no output schema), the description is minimally adequate. However, without an output schema, it should hint at the result structure (e.g., 'list of model objects') to fully inform the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, but the description adds value by linking the parameter to 'list_rankings', providing extra context on where to find valid ID values, improving upon the schema's example-based description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool gets ordered models for a specific ranking ID, and explicitly references the sibling tool 'list_rankings' for obtaining the ID, distinguishing it from listing all rankings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides usage context by indicating that the ranking ID comes from 'list_rankings', implying a workflow. However, it does not explicitly state when not to use this tool or mention alternatives like 'get_model' for individual model details.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_benchmarksList benchmarksA
Benchmark catalog with descriptions, dimensions, directions, and units.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Given no annotations, the description carries the burden of behavioral disclosure. It indicates that the tool returns a catalog (read operation) and lists the attributes included. It does not contradict any implicit behaviors, though it could be more explicit about it being a pure read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently conveys the tool's output. Every word adds value, with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple listing tool with no parameters and no output schema, the description is sufficiently complete. It specifies the content of the catalog, which is all the agent needs to understand the tool's functionality.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so schema coverage is 100%. The description adds no parameter information because there are none to describe. Per the guidelines, 0 parameters yields a baseline score of 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool returns a benchmark catalog with four specific attributes: descriptions, dimensions, directions, and units. It uses a specific verb (implicitly 'list') and resource ('benchmarks'), distinguishing it from sibling tools like list_models or get_ranking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (to get a catalog of benchmarks), but does not explicitly state when not to use it or provide alternatives. However, with zero parameters and a straightforward purpose, the usage context is clear from the name and description alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_modelsList modelsA
All public AI models with IQ, the 7 dimension scores, emotional reasoning, rank, and cost.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations, and description lacks details on behavior such as whether results are cached, sorted, or limited. Only lists returned fields.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with all key information, no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers what is returned and that it includes all public models. No output schema, but description suffices for a zero-param listing tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters; description adds value by enumerating returned fields (IQ, dimensions, emotional reasoning, etc.), though baseline is 4 for 0-param tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly specifies 'list public AI models' with concrete attributes (IQ, scores, reasoning, rank, cost). Distinguishes from siblings like compare_models and get_model.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implies use for obtaining a full list of models, but no explicit when-to-use/not-use or alternatives like compare_models for comparisons.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_rankingsList rankingsA
Available leaderboards: composite IQ, effective cost, per-dimension, and per-benchmark. Returns ids + names only.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description partially covers behavioral traits by stating it returns ids and names only, but lacks details on idempotency or side effects. For a simple list operation, this is minimally adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no unnecessary words, effectively communicating the tool's purpose and output.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters, no output schema, and a simple list functionality, the description is nearly complete. It covers what is listed and the return format, though it could mention whether it is read-only or if there are any limitations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, so the description need not add parameter semantics. Baseline score of 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description specifies the tool lists available leaderboards with specific types (composite IQ, effective cost, per-dimension, per-benchmark) and that it returns ids and names only, clearly distinguishing it from siblings like get_ranking or list_benchmarks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when one needs to see available leaderboard types but does not explicitly state when to use this tool versus alternatives like get_ranking or list_benchmarks, nor does it provide exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
7 tool updates
v0.1.0- First observed
compare_models - First observed
get_methodology - First observed
get_model - First observed
get_ranking - First observed
list_benchmarks - First observed
list_models - First observed
list_rankings
TDQS
Each tool has a clearly distinct purpose: listing models, benchmarks, rankings; getting details for single or multiple models; retrieving ranking order; and explaining methodology. No overlap or ambiguity.
All tool names follow a consistent verb_noun pattern with imperative verbs (compare, get, list) and underscore separation, creating a predictable and readable set.
Seven tools is well-scoped for a model intelligence ranking service, covering listing, detailed retrieval, comparison, and methodology without being sparse or excessive.
The tool surface covers all essential operations: listing all models, benchmarks, and rankings; retrieving individual model details; comparing models; and understanding the methodology. No obvious gaps for a read-only reference service.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Find governed AI capabilities and verify signed receipts. Read-only, no account.
Read-only access to InfluSense influencer discovery, ratings, watchlists, and reports via MCP.
A paid remote MCP for AI SDK data query MCP, built to return verdicts, receipts, usage logs, and aud
Read-only access to your VortexIQ store data: audits, KPIs, alerts, Brand DNA, reports, Ask VIQ.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants read-only access to Sprinklr data via MCP, allowing querying reports, searching cases, and calling Sprinklr API endpoints.12ISC
- AlicenseCqualityAmaintenanceRead-only MCP server that exposes public TokenLab model catalog tools for agents to discover models, inspect request contracts, and compare pricing.31164MIT
- AlicenseNot gradedqualityCmaintenanceEnables read-only access to Pocket Agent's product information, public persona templates, and app catalog. No authentication required.521MIT
- AlicenseAqualityCmaintenanceProvides read-only access to Gemini 3 Online's knowledge surface (models, pricing, links, FAQ) for MCP-compatible AI clients, requiring no API keys.3MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shea256/aiiq-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server