{"schema_version":"1.0","name":"ia-qa-toolbox","title":"IA-QA — 130+ QA & Dev Tools for AI Agents","description":"The open QA workbench for LLM stacks. 130+ testing primitives callable from Cursor, Claude Desktop, Windsurf, and any MCP agent. Prompt injection scan, hallucination check, semantic eval, RAG testing, VLM test suites, agent trajectory validation, guardrails, and classic dev tools (JSON, JWT, encoding). No API key. No signup. Free.","homepage":"https://ia-qa.com","contact":"https://ia-qa.com/contactUs","attribution":"Powered by IA-QA (https://ia-qa.com) â€” free tools for developers & AI agents, by Jean-Christophe Jamet.","call_endpoint":"https://www.ia-qa.com/mcp/call","discovery_hint":"This is a slim manifest. Use find_tool to search tools, GET /mcp/tool/{name} for full schema, or add ?full=1 to this URL for the complete manifest.","categories":["data","encoding","text","llm","qa","rag","dev","security","web","meta"],"tools":[{"name":"format_json","category":"data","description":"Format, validate, and pretty-print a JSON string. Returns the formatted JSON or a detailed parse error.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/format_json"},{"name":"generate_uuid","category":"encoding","description":"Generate one or more cryptographically random UUID v4 identifiers. Use this when you need unique IDs for test fixtures, database records, session tokens, or any scenario requiring a guaranteed-unique string. Returns up to 100 UUIDs in one call.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/generate_uuid"},{"name":"hash_text","category":"encoding","description":"Compute a cryptographic hash of a text string. Use when you need to verify data integrity, generate content fingerprints, hash passwords (prefer SHA-256+), or produce a fixed-length digest of any input. Supports SHA-256 (default), SHA-512, SHA-1, and MD5.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/hash_text"},{"name":"count_tokens","category":"llm","description":"Estimate the token count of a text string using the cl100k_base approximation (~4 chars/token). Call this BEFORE sending any text to an LLM API to check if it fits within the model context window and to estimate cost. Returns token estimate, character count, and word count.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/count_tokens"},{"name":"base64_encode","category":"encoding","description":"Encode a UTF-8 string to Base64. Use when you need to embed binary data, multi-line text, or special characters safely inside JSON fields, HTTP headers, or data URIs.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/base64_encode"},{"name":"base64_decode","category":"encoding","description":"Decode a Base64 string back to UTF-8 text. Use for inspecting Base64-encoded API responses, JWT payload claims, config file values, or attachment data.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/base64_decode"},{"name":"url_encode","category":"encoding","description":"Percent-encode a string for safe use in URLs. Call this before programmatically building query strings, path segments, or form-encoded bodies to prevent injection and malformed URLs.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/url_encode"},{"name":"url_decode","category":"encoding","description":"Decode a percent-encoded URL string back to plain text. Use when parsing query parameters from raw URLs or when displaying encoded values to users.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/url_decode"},{"name":"generate_slug","category":"web","description":"Convert any string into a URL-friendly slug: lowercase, ASCII-normalized (Ã©â†’e), special characters removed, spaces replaced with hyphens. Use for generating SEO-friendly URL paths, file names, or identifier keys from user-provided titles or labels.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/generate_slug"},{"name":"validate_email","category":"dev","description":"Validate an email address against RFC 5322 syntax before storing it, sending a transactional email, or adding it to a mailing list. Returns { valid, email } â€” use this to avoid bounces and malformed data.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/validate_email"},{"name":"minify_js","category":"dev","description":"Minify a JavaScript snippet (single expression or small function). For large files use the web UI.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/minify_js"},{"name":"decode_jwt","category":"dev","description":"Decode a JWT (JSON Web Token) and return its header and payload without verifying the signature. Also reports whether the token is expired and the exact expiry date. Use to inspect claims (sub, iss, exp, roles) during debugging or when integrating with an auth provider.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/decode_jwt"},{"name":"text_stats","category":"text","description":"Compute comprehensive statistics for any text: character count (with and without spaces), word count, line count, sentence count, paragraph count, and estimated reading time in minutes. Use for validating form field lengths, evaluating LLM output verbosity, or content auditing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/text_stats"},{"name":"generate_password","category":"encoding","description":"Generate a cryptographically secure random password using crypto.randomBytes. Configurable length (4â€“128), uppercase letters, digits, and symbols. Use when resetting user passwords, seeding test accounts, or generating API secrets.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/generate_password"},{"name":"parse_csv","category":"data","description":"Parse a CSV string into a JSON array of objects (or raw arrays). Handles RFC 4180 quoted fields, escaped quotes, and custom delimiters. Use when processing spreadsheet exports, data imports, or structured text pipelines where the source is CSV. Supports up to 200 KB.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/parse_csv"},{"name":"color_convert","category":"encoding","description":"Convert a color between HEX, RGB, and HSL formats. Use when translating design tokens between CSS notations, verifying color accessibility, or normalizing color values from user input. Accepts #rrggbb, #rgb, rgb(r,g,b), or hsl(h,s%,l%).","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/color_convert"},{"name":"regex_test","category":"text","description":"Test a regular expression pattern against an input string and return all matches with their index positions and named capture groups. Use for validating user inputs, extracting structured data from text, or debugging regex patterns. Supports flags g, i, m, s, u, y.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/regex_test"},{"name":"lorem_ipsum","category":"text","description":"Generate Lorem Ipsum placeholder text for UI mockups, design prototypes, or test data population. Configurable paragraphs (1â€“10), sentences per paragraph (1â€“20), and approximate words per sentence (3â€“30).","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/lorem_ipsum"},{"name":"timestamp_convert","category":"dev","description":"Convert between Unix timestamps (seconds or milliseconds) and ISO-8601 / UTC date strings. Auto-detects epoch vs. millisecond format. Omit input to get the current time. Returns iso, unix_s, unix_ms, utc, date, and time fields.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/timestamp_convert"},{"name":"diff_text","category":"qa","description":"Compute a unified line-by-line diff between two text strings (LCS algorithm). Returns added/removed/unchanged line counts and formatted diff hunks with configurable context lines (0â€“20). Use to compare versions of prompts, configs, code snippets, or any text where you need to see exactly what changed.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/diff_text"},{"name":"truncate_to_tokens","category":"llm","description":"Truncate text to at most N tokens (cl100k_base: ~4 chars/token) to avoid exceeding an LLM context window. Optionally keeps the end of the text instead of the start (useful for keeping recent conversation history). Reports whether truncation occurred and the estimated token count.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/truncate_to_tokens"},{"name":"split_chunks","category":"llm","description":"Split text into chunks of at most N tokens (cl100k_base: ~4 chars/token) with optional overlap. Designed for RAG ingestion pipelines.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/split_chunks"},{"name":"extract_json_from_text","category":"llm","description":"Extract the first valid JSON object or array embedded in chaotic LLM output (surrounded by markdown fences, prose, or explanatory text). Handles ```json blocks and inline JSON. Call this whenever an LLM returns structured data mixed with explanation text instead of raw JSON.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/extract_json_from_text"},{"name":"strip_markdown","category":"text","description":"Strip all Markdown formatting (headers, bold, italic, code fences, links, lists) from text and return clean plain text. Run this before injecting scraped documentation, README files, or user content into an LLM prompt to eliminate redundant markup tokens and reduce cost.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/strip_markdown"},{"name":"estimate_llm_cost","category":"llm","description":"Estimate the API cost in USD for a given model and token counts. Supports all major 2024–2026 models: GPT-4o, GPT-4.1, o3, o4-mini, Claude Opus 4, Claude Sonnet 4/4.5, Gemini 2.5 Pro/Flash, DeepSeek V3/R1, Grok 3, and legacy models.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/estimate_llm_cost"},{"name":"escape_html","category":"text","description":"Escape HTML special characters (&, <, >, \", ') to their safe HTML entities. ALWAYS call this before inserting any user-provided or LLM-generated content into an HTML template to prevent cross-site scripting (XSS) attacks.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/escape_html"},{"name":"unescape_html","category":"text","description":"Convert HTML entities (&amp;, &lt;, &gt;, &quot;, &#x27;, and numeric &#NNN;) back to plain characters. Use when processing HTML-encoded text from APIs, email content, or legacy database fields before passing to an LLM or displaying to users.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/unescape_html"},{"name":"fetch_veille_feed","category":"web","description":"Fetch the latest QA & AI/LLM articles aggregated from curated RSS sources (Google Testing Blog, DEV.to Testing/QA/AI/LLM/Agents, Hugging Face Blog, Simon Willison). Perfect for agents monitoring the QA & AI landscape.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/fetch_veille_feed"},{"name":"score_geo_signals","category":"web","description":"Analyze a webpage <head> HTML (or full HTML) for GEO (Generative Engine Optimization) signals. Returns a score /60 with per-check results and improvement tips. GEO = optimizing pages for AI-powered search engines (ChatGPT Search, Perplexity, etc.).","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/score_geo_signals"},{"name":"extract_json_path","category":"data","description":"Extract a value from a JSON string using dot-notation path (e.g., \"user.address.city\", \"items.0.name\", \"meta.tags\"). Supports array index access via numeric path segments.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/extract_json_path"},{"name":"generate_json_ld","category":"data","description":"Generate a ready-to-paste <script type=\"application/ld+json\"> snippet for GEO / structured data optimization. Supported types: WebSite, FAQPage, Article, Person, Organization, SoftwareApplication, HowTo.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/generate_json_ld"},{"name":"analyze_diff_bugs","category":"qa","description":"Detect potential bugs and code smells from a git diff or two code versions. Returns a list of issues with severity levels and test suggestions.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/analyze_diff_bugs"},{"name":"generate_test_cases","category":"qa","description":"Generate a set of test cases (valid, edge, invalid) for a given feature description. Returns test matrix with Gherkin scenarios ready to use.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/generate_test_cases"},{"name":"run_pr_gate_pipeline","category":"qa","description":"Full automated QA pipeline for a pull request. Takes a unified git diff (output of `git diff HEAD`) and returns: bug hotspots, regression impact areas, risk score (0â€“100), generated test cases, severity assessment, and a merge recommendation (PASS / CONDITIONAL / BLOCK). This is the highest-value QA tool â€” use it when reviewing any code change.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/run_pr_gate_pipeline"},{"name":"validate_mcp_response","category":"qa","description":"Validate that an MCP tool response conforms to expected format, schema, and content rules. Use this to QA-test any MCP server tool. Supply the tool's actual JSON result and a set of checks to perform.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/validate_mcp_response"},{"name":"llm_output_validator","category":"qa","description":"Validate an LLM response against QA criteria: format checks (JSON, code, markdown), content rules (must-include, must-not-include), length constraints, language detection, and safety patterns. Essential for QA testing LLM-powered features.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/llm_output_validator"},{"name":"compare_responses","category":"qa","description":"Compare two LLM or MCP responses side by side. Detects structural differences, missing keys, value changes, length variance, and semantic drift. Useful for A/B testing, regression testing, and consistency checks.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/compare_responses"},{"name":"prompt_test_suite","category":"qa","description":"Define a test suite for a prompt: provide the system prompt, user prompt, and expected output criteria. Returns a test plan with scored rubric â€” use this as input for manual or automated LLM evaluation.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/prompt_test_suite"},{"name":"mcp_server_health_check","category":"qa","description":"Generate a health check report for an MCP server's tool manifest. Validates tool definitions, schema quality, naming conventions, and documentation completeness. Paste the server manifest JSON to audit.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/mcp_server_health_check"},{"name":"mcp_server_evaluate","category":"qa","description":"Run a full compliance evaluation against a live MCP server URL. Tests: server reachability (ping), manifest discovery (GET /mcp), schema quality (snake_case names, descriptions, inputSchema), JSON-RPC 2.0 test call, and P50/P95 latency. Returns a PASS/FIX/BLOCK verdict with a 0-100 score and per-check details.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/mcp_server_evaluate"},{"name":"json_schema_validate","category":"data","description":"Validate a JSON value against a JSON Schema (draft-07 subset). Supports type, required, properties, items, enum, const, pattern, format (email/uri/date), minimum/maximum, minLength/maxLength, minItems/maxItems, uniqueItems, additionalProperties, anyOf, allOf, oneOf. Returns all validation errors with dot-notation paths.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/json_schema_validate"},{"name":"flatten_json","category":"data","description":"Flatten a nested JSON object to single-level dot-notation keys (e.g. {\"a\":{\"b\":1}} â†’ {\"a.b\":1}), or unflatten dot-notation keys back to a nested object. Supports custom separators.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/flatten_json"},{"name":"xml_to_json","category":"data","description":"Convert an XML string to a JSON object. Supports attributes, nested elements, arrays, CDATA, and namespaces. Options: parse numbers, parse booleans, ignore attributes.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/xml_to_json"},{"name":"redact_pii","category":"security","description":"Automatically detect and redact Personally Identifiable Information (PII) from text. Replaces emails, phone numbers, SSNs, credit cards, IP addresses, and JWT tokens with [REDACTED_TYPE] placeholders. Safe to use before logging or sending to an LLM.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/redact_pii"},{"name":"mock_from_schema","category":"data","description":"Generate realistic mock data from a JSON Schema. Supports all common types (string, number, integer, boolean, array, object, null), format hints (email, date, date-time, uri, uuid), enum, const, and nested schemas. Perfect for testing MCP tools with realistic data.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/mock_from_schema"},{"name":"transform_json_array","category":"data","description":"Transform a JSON array using common operations: pluck (extract specific fields), filter (by field value), sort_by (field), group_by (field), count_by (field), uniq_by (field). Useful for processing MCP tool results and LLM structured outputs.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/transform_json_array"},{"name":"json_to_csv","category":"data","description":"Convert a JSON array of objects to CSV format. Automatically detects columns from all object keys. Handles quoting and escaping per RFC 4180.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/json_to_csv"},{"name":"case_convert","category":"text","description":"Convert a string between naming conventions: camelCase, PascalCase, snake_case, kebab-case, UPPER_SNAKE_CASE, dot.case, Title Case. Essential for code generation and refactoring.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/case_convert"},{"name":"sort_lines","category":"text","description":"Sort, deduplicate, reverse, or filter lines of text. Useful for cleaning import lists, dependencies, log files, and config entries.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/sort_lines"},{"name":"number_base_convert","category":"encoding","description":"Convert numbers between bases: decimal, binary, octal, hexadecimal, or any base 2â€“36. Auto-detects 0x, 0b, 0o prefixes.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/number_base_convert"},{"name":"validate_url","category":"dev","description":"Parse and validate a URL. Returns decomposed components: protocol, hostname, port, path, query parameters, hash, and origin.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/validate_url"},{"name":"check_contrast_ratio","category":"general","description":"Calculate WCAG 2.1 contrast ratio between two colors. Returns ratio and compliance for AA/AAA normal and large text.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/check_contrast_ratio"},{"name":"html_to_markdown","category":"text","description":"Convert HTML to clean Markdown. Strips scripts, styles, nav, ads, and comments. Converts headings, lists, links, images, code blocks. Ideal for preparing web content as LLM context.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/html_to_markdown"},{"name":"cron_parse","category":"dev","description":"Parse a cron expression into a human-readable schedule description. Supports standard 5-field cron (minute hour day month weekday).","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/cron_parse"},{"name":"cron_validator","category":"dev","description":"Validate a 5-field cron expression, explain the schedule, and preview the next execution times. Use this to debug cron jobs before they reach production. Returns parsed fields, a human-readable description, and upcoming ISO timestamps.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/cron_validator"},{"name":"calculate_readability","category":"text","description":"Calculate readability scores: Flesch Reading Ease, Flesch-Kincaid Grade Level, Coleman-Liau Index, and Automated Readability Index. Useful for evaluating LLM output quality.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/calculate_readability"},{"name":"normalize_whitespace","category":"text","description":"Normalize whitespace: trim trailing spaces, collapse blank lines, normalize line endings (LF/CRLF), convert tabs to spaces. Useful for cleaning code, configs, and text before processing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/normalize_whitespace"},{"name":"embedding_similarity","category":"rag","description":"Compute text similarity using local algorithms (Bag of Words, TF-IDF, Character N-grams). No API key needed — runs entirely in-process. NOT real embeddings: for true semantic similarity with vector embeddings, use run_semantic_tests with mode=\"embeddings\" and your OpenAI API key. Supports single pair or batch mode with pipe-separated pairs. Useful for RAG retrieval testing, semantic search evaluation, and text deduplication.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/embedding_similarity"},{"name":"llm_format_check","category":"qa","description":"Validate that an LLM output matches an expected format: JSON, Markdown, code block, bullet list, numbered list, table, YAML, XML, or custom regex. Essential for structured output testing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/llm_format_check"},{"name":"hallucination_check","category":"qa","description":"Word-overlap based hallucination check: verifies if an LLM answer's words and numbers appear in the provided source/context. Fast, deterministic, no API key needed. Limitations: not semantic — does not understand synonyms or paraphrases. For true semantic grounding, use run_semantic_tests with embedding mode. Essential for quick RAG accuracy testing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/hallucination_check"},{"name":"prompt_injection_scan","category":"qa","description":"Scan user input or prompts for common prompt injection patterns. Detects system prompt overrides, jailbreak attempts, role manipulation, encoding tricks, and delimiter attacks.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/prompt_injection_scan"},{"name":"token_budget_calculator","category":"llm","description":"Plan token allocation across system prompt, user input, context/RAG chunks, and expected output. Warns if budget exceeds model context window. Supports 25+ models.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/token_budget_calculator"},{"name":"consistency_check","category":"qa","description":"Compare multiple LLM responses to the same prompt and detect inconsistencies using Jaccard word-overlap similarity and fact drift (number comparison). Fast, deterministic, no API key needed. Limitations: relies on surface-level word matching — \"Paris is the capital of France\" vs \"Paris is the French capital\" may score low despite semantic equivalence. For true semantic consistency, use run_semantic_tests with embedding mode. Essential for determinism testing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/consistency_check"},{"name":"llm_json_schema_check","category":"qa","description":"Validate that an LLM JSON output matches a JSON Schema definition. Tests required fields, types, enums, nested objects, and arrays. Critical for function-calling and structured output testing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/llm_json_schema_check"},{"name":"latency_benchmark","category":"web","description":"Measure response time of one or more HTTP endpoints (GET/POST). Runs N iterations and returns min/max/avg/p95 latency. Useful for API and MCP server benchmarking.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/latency_benchmark"},{"name":"response_quality_score","category":"qa","description":"Score an LLM response on multiple quality dimensions: relevance, completeness, clarity, conciseness, formatting. Returns a weighted 0-100 score with detailed breakdown.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/response_quality_score"},{"name":"rag_relevance_rank","category":"rag","description":"Rank an array of text chunks by relevance to a query using TF-IDF scoring. Simulates retrieval ranking for RAG testing without needing embeddings or an API.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/rag_relevance_rank"},{"name":"toxicity_scan","category":"qa","description":"Scan text for toxic language, bias indicators, profanity, and harmful content categories. Returns risk scores per category. Useful for LLM safety guardrail testing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/toxicity_scan"},{"name":"guardrail_test","category":"qa","description":"Test an LLM response against a set of guardrail rules: must-include, must-not-include, max length, required format, language, forbidden patterns, and custom regex. Returns pass/fail per rule.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/guardrail_test"},{"name":"function_call_validate","category":"qa","description":"Validate an LLM function call / tool_use output: check that function name is in allowed list, arguments match expected schema, no extra/missing args. For OpenAI function calling & MCP tool_use testing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/function_call_validate"},{"name":"conversation_analyze","category":"qa","description":"Analyze a multi-turn conversation for context retention, topic drift, instruction following, and repetition. Accepts messages array [{role, content}]. Essential for chatbot QA.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/conversation_analyze"},{"name":"mcp_schema_lint","category":"qa","description":"Lint an MCP tool definition for best practices: naming conventions, description quality, schema completeness, required fields consistency, description length. Returns actionable warnings.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/mcp_schema_lint"},{"name":"cot_analyzer","category":"qa","description":"Analyze a Chain-of-Thought (CoT) or reasoning trace from an LLM. Detects step count, logical flow, conclusion presence, backtracking, and estimates reasoning depth. Useful for o1/o3/DeepSeek-R1 evaluation.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/cot_analyzer"},{"name":"ab_test_report","category":"qa","description":"Generate an A/B test report comparing two prompts or model configurations. Accepts arrays of scores and returns statistical comparison: mean, median, std deviation, winner, and improvement percentage.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/ab_test_report"},{"name":"context_window_check","category":"llm","description":"Given an array of message objects [{role, content}], estimate total token usage and check if it fits in the target model's context window. Warns about truncation risk.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/context_window_check"},{"name":"vector_similarity","category":"rag","description":"Compute similarity/distance between two float vectors: cosine similarity, dot product, Euclidean and Manhattan distance. Essential for vector DB relevance scoring, embedding evaluation, and nearest-neighbor testing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/vector_similarity"},{"name":"normalize_vector","category":"rag","description":"L2-normalize a float vector (produce a unit vector with norm=1). Required by many vector DBs (Pinecone, Qdrant cosine). Supports batch normalization of up to 1000 vectors.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/normalize_vector"},{"name":"vector_quantize","category":"rag","description":"Simulate int8 or int4 quantization of float32 embedding vectors. Reduces storage by 4x (int8) or 8x (int4). Returns quantized values, scale factor, and precision loss (MSE). Useful for understanding vector DB compression trade-offs.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/vector_quantize"},{"name":"vector_stats","category":"rag","description":"Compute statistics for a float vector or matrix of vectors: mean, std, L2 norm, min, max, sparsity, top-K indices. Useful for debugging embedding quality and analyzing vector distributions in a vector DB.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/vector_stats"},{"name":"bm25_score","category":"rag","description":"Compute BM25 relevance score between a query and one or more documents. BM25 is the industry-standard keyword-based ranking algorithm used in Elasticsearch, OpenSearch, and Weaviate hybrid search. Returns ranked results with normalized scores.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/bm25_score"},{"name":"build_rag_prompt","category":"rag","description":"Assemble a complete RAG (Retrieval-Augmented Generation) prompt from retrieved context chunks and a user query. Handles token budgeting, citation numbering, system instruction injection, and source attribution.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/build_rag_prompt"},{"name":"prompt_template_fill","category":"rag","description":"Fill a prompt template with variables. Supports {{variable}} syntax and {{#if key}}...{{/if}} conditional blocks. Returns the filled prompt and lists unfilled variables.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/prompt_template_fill"},{"name":"few_shot_formatter","category":"rag","description":"Format few-shot examples for LLM prompts. Converts example pairs into formatted blocks. Supports chat format (User/Assistant), XML tags, Markdown, or plain text.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/few_shot_formatter"},{"name":"system_prompt_builder","category":"rag","description":"Build a structured system prompt from components: role, task, constraints, output format, tone, language, and examples. Generates a production-ready system prompt with token estimate.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/system_prompt_builder"},{"name":"model_info","category":"llm","description":"Get detailed specs for an AI model: context window, pricing per 1K tokens, knowledge cutoff, provider, multimodal support, reasoning capabilities, and feature list. Covers 30+ models from OpenAI, Anthropic, Google, DeepSeek, Meta, Mistral, Cohere, xAI.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/model_info"},{"name":"compare_models","category":"llm","description":"Compare 2-5 AI models side by side: context window, pricing, multimodal, reasoning capabilities, and provider. Returns a comparison table with a recommendation based on your use case.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/compare_models"},{"name":"http_status_lookup","category":"dev","description":"Look up detailed information about any HTTP status code: class, name, description, cacheability, typical causes, and handling best practices. Covers all standard 1xx-5xx codes.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/http_status_lookup"},{"name":"parse_http_headers","category":"dev","description":"Parse a raw HTTP headers block into a structured JSON object. Detects multi-value headers, masks Authorization values, and optionally audits for missing security headers (HSTS, CSP, X-Frame-Options, etc.).","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/parse_http_headers"},{"name":"generate_curl","category":"dev","description":"Generate a curl command from request parameters. Supports GET/POST/PUT/DELETE, custom headers, JSON body, and form data. Useful for documentation, sharing, and debugging API calls.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/generate_curl"},{"name":"extract_todos","category":"dev","description":"Extract TODO, FIXME, HACK, BUG, NOTE, OPTIMIZE, and custom tags from any source code or text. Returns line numbers, tag types, and message text. Essential for technical debt auditing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/extract_todos"},{"name":"detect_secrets","category":"dev","description":"Scan code or config files for hardcoded secrets: AWS keys, GitHub tokens, OpenAI/Anthropic API keys, Stripe secrets, JWTs, database connection strings, and generic passwords. Returns findings with severity. Run before every commit.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/detect_secrets"},{"name":"count_code_lines","category":"dev","description":"Count lines of code: total, code lines, comment lines, blank lines, and comment density. Supports JS/TS, Python, Java/C/C++, Ruby, Go, Shell, HTML/XML, and CSS.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/count_code_lines"},{"name":"lint_commit_message","category":"dev","description":"Validate a git commit message against the Conventional Commits spec (feat, fix, docs, style, refactor, test, chore, ci, perf, build). Returns compliance score, breaking change detection, and actionable suggestions.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/lint_commit_message"},{"name":"word_frequency","category":"text","description":"Analyze word frequency in text. Returns top N words with counts and percentages. Supports English stopword filtering. Useful for content analysis, keyword extraction, and LLM output analysis.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/word_frequency"},{"name":"extract_links","category":"text","description":"Extract all URLs, email addresses, and domain names from text. Returns categorized and deduplicated results. Useful for content auditing, link checking, and web scraping validation.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/extract_links"},{"name":"levenshtein_distance","category":"text","description":"Compute the Levenshtein (edit) distance and normalized similarity ratio between two strings. Supports batch comparison. Useful for fuzzy string matching, deduplication, and test result comparison.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/levenshtein_distance"},{"name":"json_diff","category":"data","description":"Compute a deep structural diff between two JSON values. Returns added, removed, and changed keys with dot-notation paths. Like git diff but for JSON objects â€” perfect for API response regression testing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/json_diff"},{"name":"merge_json","category":"data","description":"Deep merge two JSON objects. Supports three array strategies: replace (default), concat, or unique (dedup concat). Nested objects are recursively merged â€” override takes precedence for primitives.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/merge_json"},{"name":"json_to_yaml","category":"data","description":"Convert a JSON object to clean, human-readable YAML. Handles nested objects, arrays, multiline strings, and special characters. No external dependencies.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/json_to_yaml"},{"name":"generate_hmac","category":"encoding","description":"Compute an HMAC signature for a message using a secret key. Supports SHA-256 (default), SHA-512, SHA-1, and MD5. Used for API request signing, webhook verification (GitHub, Stripe, Twilio), and JWT validation.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/generate_hmac"},{"name":"format_bytes","category":"dev","description":"Convert raw byte counts to human-readable sizes in SI (KB=1000) or IEC (KiB=1024) units, or parse size strings back to bytes. Covers B, KB/KiB, MB/MiB, GB/GiB, TB/TiB, PB/PiB.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/format_bytes"},{"name":"detect_language","category":"text","description":"Detect the natural language of a text using n-gram frequency analysis and common word markers. Supports 15 languages: English, French, Spanish, German, Italian, Portuguese, Dutch, Russian, Chinese, Japanese, Korean, Arabic, Polish, Turkish, Swedish.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/detect_language"},{"name":"pr_gatekeeper","category":"dev","description":"Compound quality gate for pull requests. Runs three sequential checks: (1) secret detection â€” scans diff for API keys, tokens, passwords matching 16 regex patterns; (2) bug analysis â€” heuristic scan for eval(), innerHTML, empty catch, console.log, TODO/FIXME; (3) commit message linting against Conventional Commits spec. Returns gate verdict (PASS/WARN/BLOCK), blockers, and actionable warnings. Use before merging any code change.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/pr_gatekeeper"},{"name":"list_llm_models","category":"llm","description":"List all LLM models available on ia-qa.com with their provider, API endpoint, and capabilities. Filter by provider name (e.g. \"Groq\", \"HuggingFace\", \"OpenAI\") or return the full catalog. Use this to discover which models are available before calling an LLM API, or to compare providers.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/list_llm_models"},{"name":"llm_generate","category":"llm","description":"Generate text using open-source LLM models hosted on Groq (ultra-fast) or HuggingFace Inference (serverless). No API key required â€” the server provides its own keys. Supported models: Qwen3 32B, Gemma 4 27B, Gemma 3 27B, Llama 3.3 70B, Llama 4 Scout, DeepSeek R1, Mistral Small 24B, and more. Use list_llm_models to see the full catalog. Rate-limited to prevent abuse.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/llm_generate"},{"name":"rerank_evaluate","category":"general","description":"Evaluate RAG retrieval quality using the NVIDIA neural reranker (nv-rerankqa-mistral-4b-v3). Ranks passages by semantic relevance to a query and computes Precision@k and Recall@k. Optionally accepts ground-truth relevance labels to produce a PASS/FAIL CI/CD verdict.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/rerank_evaluate"},{"name":"shield_analyze","category":"security","description":"Run a comprehensive AI guardrail analysis on an LLM response. Orchestrates 6 deterministic safety checks plus an optional LLM-powered deep analysis in parallel: hallucination detection (grounding score), prompt injection scan, toxicity scan, output validation (PII/safety), guardrail rules, response quality scoring, and AI verdict (via Qwen, Gemma, Llama, etc.). Returns a unified PASS/FIX/BLOCK verdict with a 0-100 safety score, per-check results, and actionable fix recommendations. Use this as a single-call safety gate before surfacing any LLM output to users.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/shield_analyze"},{"name":"security_headers_check","category":"security","description":"Analyse the HTTP security headers of any public URL. Grades each header (A–F) for: Strict-Transport-Security, Content-Security-Policy, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy, X-XSS-Protection, Cross-Origin-Opener-Policy, Cross-Origin-Resource-Policy, and Cross-Origin-Embedder-Policy. Returns an overall score (0–100), per-header grades, missing headers, and fix snippets for Express, Nginx, and Apache. Use this to audit any website's HTTP hardening posture.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/security_headers_check"},{"name":"ssl_certificate_check","category":"security","description":"Analyse the SSL/TLS certificate of any HTTPS host. Returns certificate subject, issuer, validity dates, days until expiry, protocol version, cipher suite, key exchange info, and an overall grade (A+, A, B, C, F). Detects expired, self-signed, and weak certificates. Use this to audit TLS posture before production deployment or during security reviews.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/ssl_certificate_check"},{"name":"cors_test","category":"security","description":"Test a URL for CORS misconfigurations. Sends preflight (OPTIONS) and cross-origin requests with various Origin headers to detect: wildcard origins with credentials, origin reflection (echoing any origin), null origin acceptance, subdomain wildcard bypass, and missing Vary headers. Returns risk level (safe/low/medium/high/critical), per-test results, and fix recommendations. Essential for API security audits.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/cors_test"},{"name":"cors_checker","category":"security","description":"Check the CORS configuration of a URL the same way a browser would. Returns the main response status, all Access-Control-* headers, the tested origin, and the preflight OPTIONS response. Use this for direct CORS debugging, not just security auditing.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/cors_checker"},{"name":"webhook_endpoint_create","category":"general","description":"Create a temporary webhook endpoint that captures incoming HTTP requests for one hour. Returns the webhook id, public URL, expiration timestamp, and current request count. Use together with webhook_endpoint_requests to inspect captured payloads.","annotations":{"readOnlyHint":false,"destructiveHint":false,"idempotentHint":false,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/webhook_endpoint_create"},{"name":"webhook_endpoint_requests","category":"general","description":"Fetch the requests captured by a webhook created with webhook_endpoint_create. Returns the newest requests first with method, headers, query params, body payload, and timestamps.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/webhook_endpoint_requests"},{"name":"cookie_security_audit","category":"security","description":"Audit the security attributes of cookies set by any URL. Fetches the URL and inspects all Set-Cookie headers for: HttpOnly, Secure, SameSite, Domain scope, Path scope, Max-Age/Expires, __Host-/__Secure- prefixes. Flags insecure patterns: missing HttpOnly on session cookies, missing Secure flag, SameSite=None without Secure, overly broad Domain, and excessive TTL. Returns per-cookie grades and an overall security score (0–100).","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/cookie_security_audit"},{"name":"web_security_audit","category":"security","description":"Run a comprehensive web security audit combining headers, SSL, CORS, and cookies checks — then use an LLM to produce a prioritised remediation plan. Orchestrates security_headers_check + ssl_certificate_check + cors_test + cookie_security_audit in parallel, merges all findings, then asks an AI model to: (1) rank vulnerabilities by real-world exploitability, (2) generate a remediation roadmap, (3) produce fix code snippets for the detected stack. Returns both raw audit data and the AI analysis. Use this as a one-click security posture assessment.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/web_security_audit"},{"name":"secret_scan","category":"security","description":"Scan text or code for leaked secrets: API keys (AWS, GCP, Azure, OpenAI, Anthropic, Stripe, GitHub, GitLab, Slack, Twilio, SendGrid, HuggingFace), private keys (RSA/EC/PGP), JWTs, database connection strings, Bearer tokens, and Basic auth headers. Returns a list of findings with type, severity, line number, and a redacted preview. Use before committing code, sharing logs, or sending text to an LLM. 100% regex-based, zero network calls.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/secret_scan"},{"name":"similarity_score","category":"general","description":"Compute text similarity between reference and hypothesis using multiple metrics: Cosine (BoW, TF-IDF), Jaccard, ROUGE-1, ROUGE-2, ROUGE-L, and BLEU. No API key needed. Ideal for LLM eval (expected vs actual), RAG quality checks, and NLG benchmarking. Supports batch mode.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/similarity_score"},{"name":"needle_haystack_generate","category":"general","description":"Generate a \"needle in a haystack\" test: embeds a target fact into a large block of filler text at a specified position. Use this to test LLM context window retrieval accuracy. Returns the full haystack, the question to ask, and metadata. No API key needed.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/needle_haystack_generate"},{"name":"optimize_prompt_tokens","category":"general","description":"Compress an LLM prompt by removing filler words, verbose phrases, duplicate sentences, and unnecessary whitespace. Returns optimized text with token savings breakdown. 100% deterministic, no API key needed.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/optimize_prompt_tokens"},{"name":"bias_detect","category":"general","description":"Analyse a set of LLM responses generated from the same prompt template but with different demographic variants (gender, origin, age, tone). Returns a bias score (0-100), sentiment analysis per variant, pairwise Jaccard similarity, and a human-readable verdict. No API key needed â€” runs entirely locally.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/bias_detect"},{"name":"llm_fit_finder","category":"general","description":"Find the best LLM for a given use case. Compares 30+ cloud API models and 12+ local models by cost, speed, benchmarks, features and VRAM requirements. Returns ranked recommendations with cost simulation. No API key needed.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/llm_fit_finder"},{"name":"find_tool","category":"meta","description":"Search available MCP tools by keyword or category before calling them. Returns matching tool names, descriptions, and optionally their inputSchemas. Call this when you are unsure which tool to use or want to explore the catalogue. Categories: data, encoding, text, llm, qa, rag, dev, security, web.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/find_tool"},{"name":"list_local_tests","category":"eval","description":"Discover .ia-eval.yaml LLM test suite files in the project directory. Scans CWD and standard sub-directories (evals/, tests/, contracts/). Returns file paths ready to pass to run_eval_contract.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/list_local_tests"},{"name":"run_eval_contract","category":"eval","description":"Parse a .ia-eval.yaml LLM test suite, call the specified LLM model for each scenario, run all configured scorers, and return a structured JSON report with per-scenario Pass/Fail verdicts and a Markdown summary. Use list_local_tests to discover available test files.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/run_eval_contract"},{"name":"generate_html_report","category":"eval","description":"Convert a run_eval_contract() LLM Test Runner JSON result into a fully self-contained dark-themed HTML report with Pass/Fail badges, side-by-side Input/Output/Ground-Truth panels, evaluator score bars, and a radar chart. Returns the HTML as a string.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/generate_html_report"},{"name":"run_vlm_test_suite","category":"qa","description":"Run a test suite against a Vision-Language Model (VLM) â€” send an image (URL or base64) + N test cases (each with a question + assertion) to GPT-4o, Claude 3.5, or Gemini. Returns per-case PASS/FAIL verdicts, a pass rate, an overall PASS/WARNING/FAIL verdict (customizable threshold), and latency stats. Assertion types: contains, not_contains, json_format, min_length, max_length, semantic_contains (TF-IDF cosine similarity â‰¥ 0.4). BYOK: requires your own API key for the target provider.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/run_vlm_test_suite"},{"name":"multimodal_eval_guide","category":"qa","description":"Unified tool for multimodal AI evaluation: set action=guide for reference thresholds/interpretation (CLIP, FID, VQA), or set action=clip_score / fid_score / vqa_accuracy / pipeline to compute real metrics via HuggingFace Inference API and VLM BYOK calls. One tool for both reference and computation.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/multimodal_eval_guide"},{"name":"run_vlm_test_suite_batch","category":"qa","description":"Compare multiple VLMs on the same test suite in parallel â€” send an image (URL or base64) + N test cases to all models simultaneously. Returns per-model PASS/FAIL verdicts, pass rates, latency stats, and a comparison table. Assertion types: contains, not_contains, json_format, min_length, max_length, semantic_contains. BYOK: requires API keys for each provider.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/run_vlm_test_suite_batch"},{"name":"generate_eval_yaml","category":"eval","description":"Generate a complete .ia-eval.yaml evaluation contract from a plain-language description of what your LLM should do. Uses Groq llama-3.3-70b (server-side, no API key needed). Returns ready-to-run YAML for the LLM Test Runner (run_eval_contract). Picks appropriate evaluators (cosine_similarity, contains_check, hallucination_check, etc.) based on the task type.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/generate_eval_yaml"},{"name":"validate_agent_trajectory","category":"eval","description":"Run declarative assertions on an agent trace (OpenAI tool-call messages, LangChain run trees, or plain text logs). No LLM call â€” deterministic. Assertion types: order (tool A before B), must_call, must_not_call, max_calls, min_calls, no_error, recovery (agent continues after error). Returns per-assertion PASS/FAIL, parsed steps, and an overall verdict. Use this to gate CI/CD on agent behavior correctness.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/validate_agent_trajectory"},{"name":"run_semantic_tests","category":"eval","description":"Semantic assertion primitive: compare actual vs expected text pairs using cosine similarity + ROUGE-L. Two modes: tfidf (default, free, no API key) or embeddings (OpenAI text-embedding-3-small, BYOK, true semantic similarity). Returns per-case PASS/FAIL verdicts and an overall verdict. CI-ready: pipe the JSON verdict field to gate a build.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/run_semantic_tests"},{"name":"get_testing_guidelines","category":"eval","description":"Query the IA-QA methodology knowledge base. Returns structured testing guidelines, assertion strategies, thresholds, best practices, and relevant MCP tools for a given topic. Call without a topic to list all available topics. Topics: llm-unit-testing, rag-pipeline, prompt-stability, prompt-ab-testing, embedding-quality, eval-framework, semantic-testing, auto-testing, security, api-testing, ci-cd, multimodal, llm-data-security, agent-observability, pro-tips, learning-paths.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/get_testing_guidelines"},{"name":"test_skill","category":"eval","description":"Validate a SKILL.md definition (Cursor / GitHub Copilot / Windsurf) by auto-generating trigger-positive and trigger-negative scenarios, running each through the model with the skill injected as a system prompt, and scoring trigger accuracy + step adherence. Returns a PASS/FIX/BLOCK verdict with per-scenario breakdown. Uses Groq llama-3.3-70b by default (server key, no api_key needed). Pass api_key + model to use your own provider.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":false,"openWorldHint":true},"schema_url":"https://www.ia-qa.com/mcp/tool/test_skill"},{"name":"identify_caller","category":"meta","description":"Returns what the server knows about the current MCP client: clientInfo captured during initialize, User-Agent, and any _meta fields sent with this request. Useful for debugging caller identification.","annotations":{"readOnlyHint":true,"destructiveHint":false,"idempotentHint":true,"openWorldHint":false},"schema_url":"https://www.ia-qa.com/mcp/tool/identify_caller"}]}