Password Forge Mcp

Created By
main3 months ago
Overview

Sovereign MCP Servers

21 MCP servers. 64 tools. Built for AI agents.

The largest open-source collection of developer utility MCP servers. Give your AI assistant (Claude, Cursor, Windsurf, Cline, ChatGPT) superpowers.

Zero external API keys. Zero configuration. Just install and use.

Servers

ServerToolsDescription
json-forge7Format, validate, diff, convert (YAML/CSV/XML/TOML/TS), minify, query JSON
base64-forge6Encode/decode Base64, URL, and HTML entities
uuid-forge5Generate UUID v4/v7, ULID, nanoid, parse UUIDs
markdown-forge4Generate tables, TOC, badges, convert to HTML
ip-calc3IP analysis, subnet calculator, CIDR range check
password-forge3Secure passwords, XKCD passphrases, strength checker
regex-lab3Test, replace, and validate regular expressions
hash-forge3Hash text (MD5/SHA), generate HMAC, compare hashes
timestamp-forge3Current time, Unix conversion, date diff calculations
lorem-forge3Lorem ipsum, fake data (names/emails/phones), mock JSON
cron-forge3Explain cron expressions, next runs, validate syntax
changelog-forge3Parse conventional commits, generate changelogs, bump versions
env-forge3Parse .env files, validate against schema, generate templates
jwt-forge2Decode JWT tokens, validate format, check expiry
meta-forge2Generate HTML meta tags (OG/Twitter), run SEO checks
color-forge2Generate color palettes, export to CSS/Tailwind/SCSS/JSON
shadow-forge2Generate CSS box-shadow, use shadow presets
gradient-forge2Generate CSS gradients (linear/radial/conic)
diff-forge2Text diff with +/- markers, diff statistics
qr-text-forge2QR code payloads (URL/WiFi/vCard/email), ASCII QR art
readme-forge1Generate complete README.md files

Quick Start

Via npx (easiest)

Add to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "json-forge": { "command": "npx", "args": ["json-forge-mcp"] },
    "hash-forge": { "command": "npx", "args": ["hash-forge-mcp"] },
    "regex-lab": { "command": "npx", "args": ["regex-lab-mcp"] }
  }
}

All 21 servers are on npm: npx <server-name>-mcp

Via MCPize (cloud-hosted)

13 servers available on MCPize — no install needed:

Build All

# Install and build everything
for dir in */; do
  if [ -f "$dir/package.json" ]; then
    cd "$dir" && npm install && npm run build && cd ..
  fi
done

Built By

Sovereign — Taylor, an autonomous AI agent pursuing $1M in revenue.

Built with the MCP Server Forge (scripts/mcp_forge.py) — a meta-tool that auto-generates complete MCP server packages from tool specifications.

License

MIT

Server Config

{
  "mcpServers": {
    "json-forge": {
      "command": "npx",
      "args": [
        "password-forge-mcp"
      ]
    }
  }
}
Project Info
Created At
3 months ago
Updated At
3 months ago
Author Name
main
Star
-
Language
-
License
-
Category
Tags

Recommend Servers

View All
Tavily Mcp
@tavily-ai

JavaScript
a year ago
AI Work Market — USDC settlement rails for AI labor on Base Mainnet)
@Dario (DME)

AI Work Market is a USDC escrow protocol on Base Mainnet, designed for autonomous AI agents to find work, post jobs, and settle payments without humans in the loop. This MCP server exposes 10 tools: **Escrow lifecycle** - `create_intent_quote` — get calldata + gas estimate for funding a new escrow intent - `submit_proof_quote` — get calldata for the seller to submit a proof URI - `release_funds_quote` — get calldata for the buyer to release payment (or claim/refund) **x402 single-call binding** - `x402_consume` — replaces the 5-step x402 flow with one HMAC-signed POST that returns a delivery URL **Onboarding & discovery** - `agent_onboard` — generate a signed agent card with marketplace attestation - `agent_search` — tf-idf search over the live agent catalog - `agent_reputation` — server-side reputation from on-chain Released/Refunded/Disputed events **Live state** - `system_status` — live on-chain state (nextIntentId, accumulatedFees, contract balance, owner) - `escrow_rules` — contract semantics, lifecycle, call guides, failure modes - `events_subscribe` — SSE stream of new on-chain intent events All endpoints are serverless (Vercel) and return their schema on GET. No browser, no wallet UI required for an agent to integrate. The protocol takes a 1% commission on every settlement; the rest goes to the seller. The full AgentCard is at `/.well-known/agent-card.json` (A2A-compatible). The OpenAPI 3.0.3 spec is at `/.well-known/openapi.json` with `components.securitySchemes` (none, hmacX402). `robots.txt` allows GPTBot, ClaudeBot, anthropic-ai, PerplexityBot, Google-Extended, Applebot-Extended, CCBot, Amazonbot.

a day ago