Promptyard · v0
AI-era dev utilities. Static, no signup.
32 browser-only tools for engineers building with LLM APIs. Token counters, cost calculators, schema converters, MCP tooling. Everything runs locally.
- Base64 Encode / DecodeEncoding
UTF-8 safe encode and decode that round-trips emoji, CJK, and URL-safe variants.
- Token CounterTokens
Count tokens for GPT-4o, GPT-4, GPT-3.5 and more — tokenizer-exact, runs in your browser.
- Multi-model Token CompareTokens
Side-by-side token counts for the same input across GPT-4o, GPT-4 Turbo, GPT-3.5, Claude, Gemini.
- Context Window CalculatorTokens
Pick a model, paste your prompt, see how much context you have left after reserving output tokens.
- RAG Chunk EstimatorTokens
Estimate chunk count and embedding token spend from chunk size + overlap + corpus size.
- Embedding Dimension ReferenceTokens
Reference table of embedding model output dimensions, max input tokens, and pricing.
- LLM Pricing ComparisonCost
List-price reference for chat-model APIs across major providers, sortable and reviewed monthly.
- LLM Capability MatrixCost
Which frontier models support multimodal, vision, audio, JSON mode, and tool calling.
- Per-call LLM Cost CalculatorCost
Pick a model, paste your prompt, set expected output length, see the per-call cost.
- Monthly LLM Cost EstimatorCost
Plug in daily request volume + average token sizes, see monthly spend per model side-by-side.
- Rate Limit / TPM CalculatorCost
Sanity-check whether your traffic stays within RPM and TPM ceilings for a given model and tier.
- Chat Message Format ConverterFormat
OpenAI ↔ Anthropic ↔ Gemini message format conversion. Paste one shape, get the other two.
- SSE / Streaming Response ViewerFormat
Parse raw SSE bytes from any LLM streaming endpoint into events with reconstructed text.
- Anthropic XML Prompt BuilderFormat
Compose a Claude prompt as ordered XML-tagged sections — instructions, context, examples.
- JSON Schema → OpenAI FunctionSchema
Wrap a JSON Schema as an OpenAI tool definition with optional strict mode.
- JSON Schema → Anthropic ToolSchema
Wrap a JSON Schema as an Anthropic tool definition for the messages API.
- OpenAPI → Tool DefinitionsSchema
Extract tool definitions from an OpenAPI 3.x spec for OpenAI or Anthropic.
- Prompt Template BuilderPrompt
Compose a prompt with named variables, see the rendered output side-by-side.
- Prompt Diff ViewerPrompt
Side-by-side line-level diff for two prompt variants — see exactly what changed.
- System Prompt AnalyzerPrompt
Static analysis catching common prompt anti-patterns and surfacing token counts.
- Few-shot Examples FormatterPrompt
Drop input/output pairs, get them rendered as XML, Q&A, JSON, or markdown few-shot blocks.
- MCP Server Config GeneratorMCP
Build the JSON entry for Claude Desktop or project-local .mcp.json — server name, command, args, env.
- MCP Tool Definition ValidatorMCP
Validate an MCP tool definition against required fields, name format, schema shape, and conventions.
- JSON Formatter / Minifier / ValidatorJSON
Pretty-print, minify, or validate JSON. Strict spec — catches trailing commas, unquoted keys, comments at the source.
- JSON ↔ YAMLJSON
Convert between JSON and YAML losslessly, preserving scalar types and structure.
- JSON ↔ CSVJSON
Convert between flat JSON arrays and CSV / TSV — RFC 4180 quoting via PapaParse.
- JSONPath PlaygroundJSON
Test JSONPath queries against a sample document — recursive descent, filters, wildcards.
- Regex TesterRegex
JavaScript-flavour regex tester with live highlighting, capture groups, and flag toggles.
- URL Encode / DecodeEncoding
URL encode / decode with three variants: encodeURIComponent, encodeURI, and form-urlencoded.
- UUID Generator (v4 / v7)Encoding
Generate UUID v4 (random) or v7 (time-ordered). Bulk regenerate up to 100 at once.
- Unix Timestamp ConverterEncoding
Convert between unix timestamps (seconds or ms) and human dates (ISO, RFC, local).
- JWT DecoderEncoding
Decode JWT header and payload, see expiration status. No signature verification.