§ OVERVIEW
Generate images from text prompts. Backed by Pollinations.ai (Flux + Turbo models). Returns a URL the client can fetch directly.
- › Generate an image of a sunset over mountains, photorealistic
- › Make a 1024×1024 image of a logo for a coffee shop called "Sunbeam"
- › Create an image at 1536×1024 with seed 42: cyberpunk city street at night
mcpmeter sits between agent and publisher: authenticate the bearer key, forward the JSON-RPC body unchanged, count tool-call envelopes in the response, write a ledger row, return the response unchanged. The publisher never sees the consumer's API key. The consumer never sees the publisher's secret. The proxy is open source so the meter can be inspected.
§ TOOLS
2 tools Read tools are read-only; write tools mutate state. Tap any read tool to try it inline.
§ PERFORMANCE
generate
list_models
§ INTEGRATION
Pick your client. The proxy URL and bearer key go into your client's MCP config. The same shape works in 30+ MCP-compatible agents — for clients not listed, see the docs ↗.
Paste, save, restart your client. It'll prompt you to "Authenticate" — click it, sign in here, done. No keys to manage.
Paste your mcpm_live_… key into the snippet. Older clients without OAuth support, scripts, and curl all use this.
{
"mcpServers": {
"image-gen": {
"url": "https://proxy.mcpmeter.com/image-gen"
}
}
}
{
"mcpServers": {
"image-gen": {
"url": "https://proxy.mcpmeter.com/image-gen",
"headers": {
"Authorization": "Bearer mcpm_live_…"
}
}
}
}
claude mcp add image-gen \ --transport http \ https://proxy.mcpmeter.com/image-gen # Then run /mcp inside Claude Code and pick "Authenticate".
claude mcp add image-gen \ --transport http \ https://proxy.mcpmeter.com/image-gen \ --header "Authorization: Bearer $MCPM_KEY"
{
"mcpServers": {
"image-gen": {
"url": "https://proxy.mcpmeter.com/image-gen"
}
}
}
{
"mcpServers": {
"image-gen": {
"url": "https://proxy.mcpmeter.com/image-gen",
"headers": {
"Authorization": "Bearer mcpm_live_…"
}
}
}
}
{
"mcpServers": {
"image-gen": {
"url": "https://proxy.mcpmeter.com/image-gen"
}
}
}
{
"mcpServers": {
"image-gen": {
"url": "https://proxy.mcpmeter.com/image-gen",
"headers": {
"Authorization": "Bearer mcpm_live_…"
}
}
}
}
{
"servers": {
"image-gen": {
"type": "http",
"url": "https://proxy.mcpmeter.com/image-gen"
}
}
}
{
"servers": {
"image-gen": {
"type": "http",
"url": "https://proxy.mcpmeter.com/image-gen",
"headers": {
"Authorization": "Bearer mcpm_live_…"
}
}
}
}
{
"mcpServers": {
"image-gen": {
"serverUrl": "https://proxy.mcpmeter.com/image-gen"
}
}
}
{
"mcpServers": {
"image-gen": {
"serverUrl": "https://proxy.mcpmeter.com/image-gen",
"headers": {
"Authorization": "Bearer mcpm_live_…"
}
}
}
}
{
"context_servers": {
"image-gen": {
"url": "https://proxy.mcpmeter.com/image-gen"
}
}
}
{
"context_servers": {
"image-gen": {
"url": "https://proxy.mcpmeter.com/image-gen",
"headers": {
"Authorization": "Bearer mcpm_live_…"
}
}
}
}
{
"mcpServers": {
"image-gen": {
"httpUrl": "https://proxy.mcpmeter.com/image-gen"
}
}
}
{
"mcpServers": {
"image-gen": {
"httpUrl": "https://proxy.mcpmeter.com/image-gen",
"headers": {
"Authorization": "Bearer mcpm_live_…"
}
}
}
}
[mcp_servers.image-gen] url = "https://proxy.mcpmeter.com/image-gen"
[mcp_servers.image-gen] url = "https://proxy.mcpmeter.com/image-gen" [mcp_servers.image-gen.headers] Authorization = "Bearer mcpm_live_…"
mcpServers: - name: image-gen url: https://proxy.mcpmeter.com/image-gen
mcpServers: - name: image-gen url: https://proxy.mcpmeter.com/image-gen headers: Authorization: Bearer mcpm_live_…
# curl can't run the OAuth dance — paste an mcpm_live_ key for raw HTTP testing. curl -X POST https://proxy.mcpmeter.com/image-gen \ -H "Authorization: Bearer $MCPM_KEY" \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
curl -X POST https://proxy.mcpmeter.com/image-gen \ -H "Authorization: Bearer $MCPM_KEY" \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
The proxy authenticates the bearer token, looks up the price, forwards the call to the upstream MCP, returns the response unchanged, and writes a usage record.
§ PRICING
PER_CALL pricing at $0.1000 / call (USD).
Each consumer gets 3 calls / month at no cost. Resets on the 1st. After the allowance, calls bill at the per-call rate above.
§ TRUST & COMPLIANCE
JSON-RPC bodies pass through. We log call metadata only.
For PCI scope, mcpmeter is a network passthrough.
Metering code is auditable on GitHub ↗; reconciles to Stripe nightly.
13 months retention in your region. CSV export.