๐ 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
- Create a Vercel account at vercel.com
- Install Vercel CLI:
npm i -g vercel - Run
vercelin this directory - 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
- Summarize long documents or emails
- Count words for blog posts
- Extract all emails from a CSV dump
- Extract links from web-scraped content
- Extract phone numbers from text
- Convert titles to URL slugs
- Convert variable names between camelCase/snake_case
- Find & replace across documents with regex
- Compare two document versions
- Truncate product descriptions
- Generate placeholder text for mockups
- Check if a phrase is a palindrome
- Analyze top keywords in text
- Validate email formats in bulk
- Validate URLs before publishing
- Encode data in Base64 for APIs
- Generate secure passwords for accounts
- Suggest usernames for new users
- Check if content is readable for target audience
- Check anagram puzzle answers
Math & Data
- Calculate complex expressions
- Convert miles to kilometers
- Convert Celsius to Fahrenheit
- Calculate percentage discounts
- Get statistical summary of a dataset
- Check if large numbers are prime
- Generate Fibonacci sequence for puzzles
- Calculate BMI for fitness apps
- Compound interest projections
- Monthly loan/mortgage payment
- Convert USD to EUR/JPY/etc.
- Convert numbers to Roman numerals
- Format large numbers with commas
- Split restaurant bills with tip
- Calculate prices with tax
Web & Developer Productivity
- Generate SEO meta tags for any page
- Generate robots.txt for new sites
- Look up what a 503 error means
- Convert HEX color to RGB for CSS
- Generate QR code for a URL or contact
- Validate and pretty-print JSON
- Convert JSON API response to CSV
- Import CSV data as JSON
- Convert README markdown to HTML
- Strip HTML from scraped content
- Generate XML sitemap for all pages
- Parse browser User-Agent strings
- Generate UUIDs for database records
- Generate hash checksums for files
- Look up regex for email validation
- Analyze code complexity
- Scaffold RESTful API endpoints
- Build SQL SELECT/INSERT queries
- Generate realistic test/mock data
- Generate UI color palettes
- Parse & explain cron schedules
- Create git commit messages
- Generate .env file templates
Date & Time
- Format dates for different regions
- Calculate days between contract dates
- Add 30 days to a date
- Count working days for project estimates
- Convert 9 AM NYC to Tokyo time
- Count down to product launch
- Generate October 2025 calendar
- Convert Unix timestamps to readable dates
- Find which week of year a date is
- Check if a date is a US holiday
Business & Finance
- Generate invoice data for billing
- Calculate gross and net margins
- Analyze monthly cash flow
- Calculate NPV of an investment
- Find break-even units for a product
- Convert annual salary to hourly
- Calculate stock trade returns
- Create 50/30/20 budget breakdown
- Track business KPIs in one call
- Generate business plan outline
- Create SWOT analysis framework
- Calculate marketing campaign ROI
AI & Content Production
- Generate system prompts for AI agents
- Wrap questions in CoT reasoning
- Build few-shot examples for AI
- Generate cold outreach email
- Write job descriptions
- Create meeting agendas
- Write Agile user stories
- Generate quarterly OKRs
- Plan a weekly content calendar
- Draft press releases
Advanced Combinations
- Validate emails โ Extract stats โ Word count
- CSV โ JSON โ statistics analysis
- Generate invoice โ Calculate tax โ ROI
- Timezone convert โ Calendar generate โ Add business days
- Generate mock users โ Hash IDs โ Create UUIDs
- Extract URLs โ Validate โ Generate sitemap
- Calculate salary โ Budget plan โ Compound savings
- Analyze text โ Readability โ Summarize
- Generate SQL โ Build API endpoint โ Mock data
- Create OKRs โ Meeting agenda โ Press release
- Parse JSON response โ CSV export โ Statistics
- SWOT analysis โ Business plan โ KPI tracker
- 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"