Ultimate All-in-One MCP Server

Ultimate All-in-One MCP Server

A comprehensive collection of 103 tools providing capabilities for text processing, data analysis, web development, and business management in a single server. It is designed for rapid deployment to Vercel and integrates seamlessly with MCP clients like Claude and Cursor to automate diverse workflows.

Category
Visit Server

README

šŸš€ 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"

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Ultimate All-in-One MCP Server