Skip to main content
Glama

condor-mcp

A minimal stdio MCP server exposing a single tool (catalog.search) that queries a product catalog stored in an in-memory SQLite database (node:sqlite, no external dependencies).

Tool

  • catalog.search — returns the public columns (name, category, price) for products in a given category.

Related MCP server: sqlite-explorer-mcp

Transport

stdio (newline-delimited JSON-RPC 2.0 on stdin/stdout). Methods: initialize, tools/list, tools/call.

Layout

src/
  server.js   stdio JSON-RPC loop
  db.js       in-memory SQLite setup + query helper
  tools.js    tool definitions + handler

Running

node src/server.js
# then write JSON-RPC requests, one per line, to stdin

Available Tools

1 tool
catalog.searchProduct SearchC

Search the public product catalog by category.

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryYes

TDQS

C2.7/5.0
Behavior2/5

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

No annotations are present, so the description carries full burden. It mentions 'search' suggesting a read operation, but fails to disclose whether results are paginated, filtered exactly, or return list vs. single item. No side effects or authentication needs noted.

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

Conciseness4/5

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

The description is a single sentence with no waste. It is front-loaded with the verb and resource. However, it is slightly too terse, missing opportunities to provide brief context.

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?

Given the simplicity (one required parameter, no output schema), the description is incomplete. It omits whether it returns products or just count, whether category is case-sensitive, and any prerequisites like user roles. More detail would aid an agent.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It adds 'by category', which mirrors the parameter name 'category' without adding format, example, or constraints beyond min/max length. Minimal value added.

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

Purpose4/5

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

The description clearly states it searches the public product catalog by category. It specifies the verb 'search', the resource 'public product catalog', and the filter criterion 'by category'. However, it is very brief and doesn't elaborate on scope or behavior.

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?

No guidance on when to use this tool vs alternatives; no exclusions or context provided. The description merely implies usage when searching by category, but lacks any comparative or conditional information.

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

TDQS

C2.9/5.0
Disambiguation5/5

With only one tool, there is no possibility of confusion or overlap with other tools.

Naming Consistency5/5

The single tool name 'catalog.search' follows a consistent noun.verb pattern, which is clear and predictable.

Tool Count2/5

Having only one tool for a product catalog server is insufficient; a typical catalog server would need multiple tools for browsing, filtering, and retrieving details.

Completeness1/5

The tool set is severely incomplete for a product catalog: it only offers search by category, missing essential operations like listing categories, getting product details, or managing the catalog.

Maintenance

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

Latest Blog Posts

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/locus-x64/condor-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server