RapidTools Validate
Deterministic JSON Schema validation with signed cryptographic attestations. Validate payloads, verify signatures, and retrieve attestation records.
@tailoredtools/mcp-server
MCP server for RapidTools — deterministic JSON Schema validation with signed attestations.
What this does
Exposes three tools to any MCP-compatible client (Claude Code, Cursor, Cline, VS Code Copilot):
- validate — Validate a JSON payload against a JSON Schema. Returns a signed attestation.
- verify — Verify the cryptographic signature of a previous attestation.
- get_attestation — Retrieve a stored attestation by ID.
Every validation is deterministic (same inputs = same result), idempotent, and cryptographically signed.
Setup
Claude Code
Add to your .mcp.json:
{
"mcpServers": {
"rapidtools": {
"command": "npx",
"args": ["-y", "@tailoredtools/mcp-server"],
"env": {
"RAPIDTOOLS_API_KEY": "your-api-key"
}
}
}
}
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"rapidtools": {
"command": "npx",
"args": ["-y", "@tailoredtools/mcp-server"],
"env": {
"RAPIDTOOLS_API_KEY": "your-api-key"
}
}
}
}
VS Code Copilot
Add to .vscode/mcp.json:
{
"servers": {
"rapidtools": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@tailoredtools/mcp-server"],
"env": {
"RAPIDTOOLS_API_KEY": "your-api-key"
}
}
}
}
Get an API key
Visit billing.rapidtools.dev to subscribe and get an API key.
Environment variables
| Variable | Required | Description |
|---|---|---|
RAPIDTOOLS_API_KEY | Yes | Your RapidTools API key |
RAPIDTOOLS_API_URL | No | Override API endpoint (default: https://validate.rapidtools.dev) |
Tools
validate
Validate data against a JSON Schema and get a signed attestation.
Input:
schema (object, required) — JSON Schema (Draft 2020-12 subset)
payload (any, required) — Data to validate
metadata (object, optional) — Key-value pairs to attach
idempotency_key (string, optional) — For deduplication
Output:
attestation_id — Unique attestation identifier
valid — true/false
errors — Array of validation errors (if any)
schema_hash — SHA-256 of the schema
payload_hash — SHA-256 of the payload
signature — HMAC-SHA256 cryptographic signature
timestamp — ISO 8601 timestamp
verify
Verify that an attestation signature is valid and untampered.
Input (option A):
attestation_id — ID of a stored attestation
Input (option B):
id, schema_hash, payload_hash, valid, created_at, signature — Full attestation record
Output:
attestation_id — The verified attestation ID
signature_valid — true/false
get_attestation
Retrieve a stored attestation by ID.
Input:
attestation_id — The attestation ID to retrieve
Output:
Full attestation record including signature and metadata
Links
License
MIT
Related Servers
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Swagger/OpenAPI MCP Server
Explore and interact with Swagger/OpenAPI specifications, allowing for browsing endpoints and retrieving details on API operations.
Brainfaq
MCP server for the Brainfuck programming language that allows your favourite LLM to debug Brainfuck programs.
Android MCP Server
Control Android devices via the Android Debug Bridge (ADB).
Gemini CLI RAG MCP
A RAG-based Q&A server using a vector store built from Gemini CLI documentation.
Apple Developer Documentation
Search Apple's official developer documentation for iOS, macOS, SwiftUI, WWDC videos, and more.
OpenAPI to MCP Server
A tool to create MCP servers from OpenAPI/Swagger specifications, allowing AI assistants to interact with your APIs.
Chrome DevTools MCP Server
An MCP server for AI-assisted frontend development using Chrome DevTools. Requires Google Chrome.
TemplateIO Image Generation
Generate images using the Templated.io API. Requires a Templated.io API key.
Snowfort Circuit MCP
Automate web browsers and Electron desktop applications for AI coding agents.
MapleStory MCP Server
Access NEXON MapleStory open API data for character info, union details, guild data, rankings, and game mechanics.