CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
br0ski777 avatar

Barcode Generator API

br0ski777/barcode-generator-x402
1 toolsSSEregistry active
Summary

Generates barcodes in multiple formats including EAN-13, UPC-A, Code128, and Code39, returning them as SVG for easy integration into web apps or documents. The server runs remotely via SSE transport and uses the x402 micropayment system, so you'll need to handle payment integration. Reach for this when you need programmatic barcode generation without installing local dependencies or managing image libraries. The GitHub repo is minimal on documentation, but the API appears straightforward: request a barcode type and data, get back an SVG. Useful for e-commerce systems, inventory management, or any application that needs to generate scannable codes on the fly.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Tools

Public tool metadata for what this MCP can expose to an agent.

1 tools
utility_generate_barcodeUse this when you need to generate a barcode from text or a number. Returns base64-encoded SVG image in JSON. Returns: 1. image (base64 SVG string) 2. format used (code128/code39/ean13/upca) 3. data4 params

Use this when you need to generate a barcode from text or a number. Returns base64-encoded SVG image in JSON. Returns: 1. image (base64 SVG string) 2. format used (code128/code39/ean13/upca) 3. data

Parameters* required
datastring
Data to encode in the barcode
formatstring
Barcode format: code128, code39, ean13, upca (default: code128)
heightnumber
Barcode height in pixels (default: 100)
widthnumber
Bar width in pixels (default: 2)

Barcode Generator API

MCP Server x402 License: MIT

Generate barcodes -- EAN-13, UPC-A, Code128, Code39. Base64 SVG output, custom width and height. Pay-per-call via x402 (USDC on Base L2) -- no API key, no signup, no rate-limit wall.

Part of the klymax402 marketplace -- 100 x402 micropayment APIs for AI agents, one wallet, USDC on Base.

Quickstart -- MCP

Add to your MCP client config (Claude Desktop, Cursor, ElizaOS, etc.):

{
  "mcpServers": {
    "barcode-generator": {
      "url": "https://barcode-generator.api.klymax402.com/mcp"
    }
  }
}

Quickstart -- HTTP (x402)

curl -X POST "https://barcode-generator.api.klymax402.com/api/barcode" \
  -H "Content-Type: application/json" \
  -d '{"data":"..."}'
# -> 402 Payment Required, with an x402 payment challenge in the response body

Any x402-aware client (@x402/fetch, x402-agent-tools, ATXP) handles the 402 -> sign -> retry cycle automatically.

Tools

ToolMethodPathPriceDescription
utility_generate_barcodePOST/api/barcode$0.003Generate a barcode from text or number

utility_generate_barcode

Use this when you need to generate a barcode from text or a number. Returns base64-encoded SVG image in JSON.

Parameters

NameTypeRequiredDescription
datastringyesData to encode in the barcode
formatstringnoBarcode format: code128, code39, ean13, upca (default: code128)
widthnumbernoBar width in pixels (default: 2)
heightnumbernoBarcode height in pixels (default: 100)

Example response:

{"data":"5901234123457","format":"ean13","image":"PHN2ZyB4bWxu...","width":264,"height":142}

When to use: product labeling, inventory management, shipping labels, retail POS systems, and asset tracking barcodes.

Not for: QR codes (use utility_generate_qr_code), image resizing (use media_resize_image), PDF generation (use document_generate_pdf).

Example agent prompts

  • "Generate a barcode from text or a number"

Payment

  • Protocol: x402 -- HTTP-native pay-per-call, no signup, no API key
  • Network: Base L2 (eip155:8453)
  • Asset: USDC
  • Facilitator: Coinbase CDP (primary), PayAI (fallback)
  • Also reachable via ATXP (OAuth-wrapped x402, RFC 9728 protected-resource metadata)

Part of klymax402

100 x402 micropayment APIs for AI agents -- one wallet, USDC on Base, zero signup.

  • Catalog: https://klymax402.com/llms.txt
  • Full API reference: https://klymax402.com/llms-full.txt
  • Live stats: https://klymax402.com/stats

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
Design & Creative
Registryactive
TransportSSE
UpdatedMay 16, 2026
View on GitHub

More from br0ski777

  • Base64 Codec API
  • Code Sandbox API
  • Company Enrichment API
  • Crontab Generator API
  • DeFi Liquidation Oracle API
  • Email Send API
  • GDPR Scanner API
  • Hash Generator API
  • HL Portfolio API1
  • Hyperliquid Spot API
  • Hyperliquid Whale Position Tracker API
  • Image Generator API
  • Image Resize API
  • IP Geolocation API
  • JSON Validator API
  • Phone Number Validation API
  • Regex Tester API
  • Sentiment Analyzer API
  • Slug Generator API
  • Social Profile Enrichment API
  • Solana Pool Liquidity Scanner API
  • Solana Priority Fee Estimator API
  • Technology Stack Detection API
  • Text Classifier API

Related Design & Creative MCP Servers

View all →
br0ski777 avatar
Markdown Renderer API

io.github.br0ski777/markdown-renderer

Render markdown to styled HTML with light/dark/github themes. x402 micropayment.
conanmcn avatar
Fragments Mcp

io.github.conanmcn/fragments-mcp

Design system MCP with 9 tools for component discovery, rendering, and a11y auditing
educlopez avatar
Sparkbites

io.github.educlopez/sparkbites

Search 500+ curated design websites and install DESIGN.md files directly from your AI agent.
evozim avatar
Architecture-DNA

io.github.evozim/architecture-dna

Deep codebase architect auditing system design schemas.
evozim avatar
PromptRefiner

io.github.evozim/prompt-refiner

Generative prompt optimizer for Midjourney, Sora, and DALL-E.
evozim avatar
StyleForge-AI

io.github.evozim/styleforge-ai

Automated design token builder producing clean CSS and Sass assets.