Skip to main content
Glama
pratyusendu

Ultimate All-in-One MCP Server

by pratyusendu

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

-
security - not tested
F
license - not found
-
quality - not tested

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/pratyusendu/ultimate-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server