Skip to main content
Glama
crisjonblvx

enrichrapi-mcp

by crisjonblvx

signup

Create an Enrichr API key by submitting your email. The raw key is returned once; verify your mailbox to receive the free monthly allowance and recover lost keys.

Instructions

Create an Enrichr API key.

The raw key is returned once. The free monthly allowance and lost-key recovery require verifying the mailbox via POST /v1/account/verify (token emailed by Resend). Unverified keys do not receive the free tier.

Args: email: The user's email address

Returns: dict with keys: api_key, message, email_verified, verification_required

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.9/5.0
Behavior4/5

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 the raw key is returned only once, that verification via email is required for free monthly allowance and lost-key recovery, and that unverified keys do not receive the free tier. It also describes the return keys, providing useful behavioral context beyond a basic creation action.

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

Conciseness5/5

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

The description is compact, front-loaded with the core purpose, and has clearly labeled Args and Returns sections. Every sentence carries important information (return-once behavior, verification requirement, free tier condition) without unnecessary fluff.

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

Completeness4/5

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

Given the tool's complexity (signup with verification, free tier, lost-key recovery) and lack of output schema or annotations, the description covers the critical behaviors and return values. It does not mention error cases like duplicate email, but the description is otherwise complete enough for an agent to understand the signup flow.

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?

The schema has 0% description coverage, so the description must compensate. It only says 'email: The user's email address', which adds little beyond the schema's title 'Email'. No format, constraints, or behavioral implications of the email are explained, despite the description later referencing email verification.

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

Purpose5/5

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

The description opens with 'Create an Enrichr API key' – a specific verb and resource. This clearly distinguishes it from siblings like rotate_api_key, which handles key rotation rather than initial creation. The subsequent details about verification and return keys reinforce the purpose.

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

Usage Guidelines3/5

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

The description implies usage for signing up and obtaining a new API key, and explains the verification step and free tier. However, it does not explicitly state when to use this tool vs alternatives like rotate_api_key or account_usage, nor does it mention when not to use it. The context is sufficient but not explicit about alternatives.

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