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
访问服务器

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"

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选