ultimate-mcp-server 104

๐Ÿš€ Ultimate All-in-One MCP Server

One MCP server. 103 tools. Every task covered. Deploy to Vercel in 2 minutes. Plug into Claude, Cursor, or any MCP client instantly.

๐Ÿ“ฆ What's Inside

Category Tools Count
๐Ÿ“ Text & Content Summarize, extract, encode, generate 20
๐Ÿ”ข Data & Math Calculator, stats, finance, units 15
๐ŸŒ Web & Research SEO, JSON/CSV, HTML, QR codes 12
๐Ÿ“… Date & Time Format, diff, timezone, calendar 10
๐Ÿ’ผ Business & Finance Invoices, KPIs, NPV, budgets 12
๐Ÿ’ป Developer Tools UUIDs, SQL, Regex, mock data 11
๐Ÿค– AI Prompts & Templates System prompts, OKRs, emails 10
Total 103

โšก Deploy to Vercel (2 minutes)

Option 1: One-click deploy

# Clone and deploy
git clone <this-repo>
cd ultimate-mcp-server
vercel deploy --prod

Option 2: Manual

  1. Create a Vercel account at vercel.com
  2. Install Vercel CLI: npm i -g vercel
  3. Run vercel in this directory
  4. Copy your deployment URL (e.g., https://my-mcp.vercel.app)

๐Ÿ”Œ Connect to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://YOUR-URL.vercel.app/mcp"]
    }
  }
}

Restart Claude Desktop. Done! โœ…

๐Ÿ”Œ Connect to Cursor

In Cursor Settings โ†’ MCP โ†’ Add server:

{
  "ultimate-mcp": {
    "url": "https://YOUR-URL.vercel.app/mcp"
  }
}

๐Ÿ”Œ Connect via any MCP HTTP client

# MCP endpoint
POST https://YOUR-URL.vercel.app/mcp

# List tools
POST https://YOUR-URL.vercel.app/mcp
Content-Type: application/json

{"jsonrpc":"2.0","id":1,"method":"tools/list"}

# Call a tool
{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"word_count","arguments":{"text":"Hello world"}}}

๐Ÿ“‹ 100+ Use Cases

Text & Writing

  1. Summarize long documents or emails
  2. Count words for blog posts
  3. Extract all emails from a CSV dump
  4. Extract links from web-scraped content
  5. Extract phone numbers from text
  6. Convert titles to URL slugs
  7. Convert variable names between camelCase/snake_case
  8. Find & replace across documents with regex
  9. Compare two document versions
  10. Truncate product descriptions
  11. Generate placeholder text for mockups
  12. Check if a phrase is a palindrome
  13. Analyze top keywords in text
  14. Validate email formats in bulk
  15. Validate URLs before publishing
  16. Encode data in Base64 for APIs
  17. Generate secure passwords for accounts
  18. Suggest usernames for new users
  19. Check if content is readable for target audience
  20. Check anagram puzzle answers

Math & Data

  1. Calculate complex expressions
  2. Convert miles to kilometers
  3. Convert Celsius to Fahrenheit
  4. Calculate percentage discounts
  5. Get statistical summary of a dataset
  6. Check if large numbers are prime
  7. Generate Fibonacci sequence for puzzles
  8. Calculate BMI for fitness apps
  9. Compound interest projections
  10. Monthly loan/mortgage payment
  11. Convert USD to EUR/JPY/etc.
  12. Convert numbers to Roman numerals
  13. Format large numbers with commas
  14. Split restaurant bills with tip
  15. Calculate prices with tax

Web & Developer Productivity

  1. Generate SEO meta tags for any page
  2. Generate robots.txt for new sites
  3. Look up what a 503 error means
  4. Convert HEX color to RGB for CSS
  5. Generate QR code for a URL or contact
  6. Validate and pretty-print JSON
  7. Convert JSON API response to CSV
  8. Import CSV data as JSON
  9. Convert README markdown to HTML
  10. Strip HTML from scraped content
  11. Generate XML sitemap for all pages
  12. Parse browser User-Agent strings
  13. Generate UUIDs for database records
  14. Generate hash checksums for files
  15. Look up regex for email validation
  16. Analyze code complexity
  17. Scaffold RESTful API endpoints
  18. Build SQL SELECT/INSERT queries
  19. Generate realistic test/mock data
  20. Generate UI color palettes
  21. Parse & explain cron schedules
  22. Create git commit messages
  23. Generate .env file templates

Date & Time

  1. Format dates for different regions
  2. Calculate days between contract dates
  3. Add 30 days to a date
  4. Count working days for project estimates
  5. Convert 9 AM NYC to Tokyo time
  6. Count down to product launch
  7. Generate October 2025 calendar
  8. Convert Unix timestamps to readable dates
  9. Find which week of year a date is
  10. Check if a date is a US holiday

Business & Finance

  1. Generate invoice data for billing
  2. Calculate gross and net margins
  3. Analyze monthly cash flow
  4. Calculate NPV of an investment
  5. Find break-even units for a product
  6. Convert annual salary to hourly
  7. Calculate stock trade returns
  8. Create 50/30/20 budget breakdown
  9. Track business KPIs in one call
  10. Generate business plan outline
  11. Create SWOT analysis framework
  12. Calculate marketing campaign ROI

AI & Content Production

  1. Generate system prompts for AI agents
  2. Wrap questions in CoT reasoning
  3. Build few-shot examples for AI
  4. Generate cold outreach email
  5. Write job descriptions
  6. Create meeting agendas
  7. Write Agile user stories
  8. Generate quarterly OKRs
  9. Plan a weekly content calendar
  10. Draft press releases

Advanced Combinations

  1. Validate emails โ†’ Extract stats โ†’ Word count
  2. CSV โ†’ JSON โ†’ statistics analysis
  3. Generate invoice โ†’ Calculate tax โ†’ ROI
  4. Timezone convert โ†’ Calendar generate โ†’ Add business days
  5. Generate mock users โ†’ Hash IDs โ†’ Create UUIDs
  6. Extract URLs โ†’ Validate โ†’ Generate sitemap
  7. Calculate salary โ†’ Budget plan โ†’ Compound savings
  8. Analyze text โ†’ Readability โ†’ Summarize
  9. Generate SQL โ†’ Build API endpoint โ†’ Mock data
  10. Create OKRs โ†’ Meeting agenda โ†’ Press release
  11. Parse JSON response โ†’ CSV export โ†’ Statistics
  12. SWOT analysis โ†’ Business plan โ†’ KPI tracker
  13. SEO meta โ†’ Sitemap โ†’ Robots.txt full setup

๐Ÿ—๏ธ Project Structure

ultimate-mcp-server/
โ”œโ”€โ”€ api/
โ”‚   โ”œโ”€โ”€ mcp.js          # Main MCP endpoint (103 tools)
โ”‚   โ”œโ”€โ”€ health.js       # Health check
โ”‚   โ”œโ”€โ”€ tools.js        # Tools catalog API
โ”‚   โ””โ”€โ”€ index.js        # Landing page
โ”œโ”€โ”€ vercel.json         # Vercel routing config
โ”œโ”€โ”€ package.json        # Dependencies
โ””โ”€โ”€ README.md           # This file

๐ŸŒ API Reference

Endpoint Method Description
/mcp POST MCP JSON-RPC endpoint
/health GET Server health check
/tools GET List all tools with categories
/ GET Landing page

๐Ÿ”ง Local Development

npm install
npm run dev
# Server runs on http://localhost:3000

๐Ÿ›ก๏ธ Environment Variables

No API keys required! All 103 tools run server-side with zero external dependencies.

For extending with real-time data (optional):

# Optional: Add these for real-time features
EXCHANGE_RATE_API_KEY=your_key_here
WEATHER_API_KEY=your_key_here

๐Ÿ“„ License

MIT โ€” free for personal and commercial use."# ultimate-mcp-server"

MCP Server ยท Populars

MCP Server ยท New