CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

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
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Mcp

shahdadk/swiftsign
HTTPregistry active
Summary

Wraps the SwiftSign REST API so your agent can send documents for signature, track envelope status, and download sealed PDFs without leaving the chat. You get tools to mint a sandbox API key, create envelopes with recipients and documents, check signing progress, and pull the final audit-trailed result. Useful when you're automating contract workflows or building document pipelines that need legally compliant e-signatures. The service runs on Stripe-metered plans (free tier: 5 envelopes/month) and handles ESIGN/UETA compliance, so you're not wiring up DocuSign or HelloSign yourself. Built on Next.js with Neon Postgres, Cloudflare R2 for storage, and Resend for delivery notifications.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →

SwiftSign

AI-native e-signatures. Send, track, and seal contracts from your terminal — Claude Code, Cursor, Zed, or any MCP-aware agent. ESIGN / UETA / PIPEDA compliant sealed PDFs with audit trail.

Stack

  • Next.js 16.2 (App Router, Turbopack, React 19)
  • Prisma 7 (preview) + Neon PostgreSQL via @prisma/adapter-pg
  • Cloudflare R2 (S3-compatible) for PDFs + page images
  • Resend for transactional email
  • Stripe for billing (Free / Pro $15 / Team $79, monthly)
  • Upstash Redis for rate limiting
  • Sentry for error tracking

Setup on a fresh machine

git clone https://github.com/shahdadk/swiftsign.git
cd swiftsign
./scripts/bootstrap.sh

The bootstrap script installs Vercel CLI, logs you in (browser auth), links the checkout to the SwiftSign Vercel project, pulls production env vars into .env.local, and runs npm install. After it finishes, run npm run dev and you're operational.

Manual local development

# Install (legacy-peer-deps is pinned in .npmrc, required for React 19 / Next 16)
npm install

# Generate the Prisma client (writes to src/generated/prisma/, gitignored)
npx prisma generate

# Apply schema migrations to your dev DB
npx prisma migrate deploy

# Run the dev server
npm run dev

Copy .env.local.example to .env.local and fill in the values, or run ./scripts/bootstrap.sh to pull them from Vercel.

Commands

  • npm run dev — start dev server on port 3000
  • npm run build — production build (Turbopack)
  • npm run start — run the built server
  • npm run lint — ESLint
  • npx prisma generate — regenerate the Prisma client
  • npx prisma migrate dev --name <slug> — create a new migration
  • npx tsx prisma/seed.ts — seed a local user (manual)

Deploying to Vercel

  1. Provision services:

    • Neon PostgreSQL database; copy the pooled connection string to DATABASE_URL.
    • Cloudflare R2 bucket; create an API token with read/write; copy account ID, access key ID, secret, bucket name.
    • Resend domain (verify DNS for the EMAIL_FROM domain) and an API key.
    • Stripe products: SwiftSign Pro ($15/mo recurring), SwiftSign Team ($79/mo recurring); copy price IDs. Enable Stripe Tax if collecting GST/HST/VAT. Set the customer portal return URL to https://swiftsign.ca/dashboard/billing and enable cancel + payment-method update.
    • Stripe webhook endpoint: https://swiftsign.ca/api/stripe/webhook, listening for checkout.session.completed, customer.subscription.created/updated/deleted, invoice.paid, invoice.payment_failed. Copy the signing secret.
    • Upstash Redis instance for rate limiting; copy REST URL and token.
    • Sentry project (Next.js); copy the DSN.
    • Generate a CRON_SECRET (16+ random chars). Vercel cron will pass this as Authorization: Bearer <CRON_SECRET>.
  2. Set environment variables on the Vercel project (Production + Preview). See .env.local.example for the full list.

  3. Deploy: connect the repo, push to main. Vercel runs npx prisma generate and next build from package.json.

    Run schema migrations once via npx prisma migrate deploy — locally, or as part of a build hook. Subsequent deploys re-apply automatically if you wire it into the build command.

  4. Verify: visit /api/healthcheck. Returns { status: "ok" } with DB and R2 checks green.

Architecture

  • /api/v1/envelopes — public REST API; bearer-token auth via Authorization: Bearer <apiKey>. Quota enforced (5/mo on Free, unlimited on Pro/Team).
  • /sign/[token] + /api/sign/[token] — recipient signing flow. No account; signingToken is the only credential.
  • /dashboard/* — sender UI. Cookie session via swiftsign_session. Pages: envelopes list, envelope detail, billing, settings (API key + sessions), webhooks.
  • /api/stripe/webhook — Stripe → DB sync (subscription + plan).
  • /api/cron/webhook-retry — runs every 5 minutes via vercel.json to retry failed outbound webhook deliveries.

MCP server

Independent npm package at mcp/. Build + publish:

cd mcp
npm install
npm run build
npm publish

Users install with:

claude mcp add swiftsign -- npx -y swiftsign-mcp

Configure with SWIFTSIGN_API_KEY (and optionally SWIFTSIGN_API_URL for self-hosted instances).

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Registryactive
TransportHTTP
UpdatedJun 9, 2026
View on GitHub