Unified MCP Suite
A collection of MCP servers for media tools, information retrieval, PDF creation, and presentation generation.
Unified MCP Suite
This repository contains a collection of Model Context Protocol (MCP) servers, packaged together for convenience. Each server provides distinct functionalities related to media handling, information retrieval, and document creation.
📦 View Published Packages - Easy installation guide for all npm packages!
Important: These servers are designed to run as separate processes. You need to set up and configure each server individually within your MCP client (e.g., Cline or the Claude Desktop App).
Included Servers
- Media Tools Server (
media-tools-server): Provides tools for searching images (Unsplash) and videos (YouTube), downloading images, and understanding image/video content (Google Gemini, YouTube Transcripts). (Node.js/TypeScript) - Information Retrieval Server (
information-retrieval-server): Provides tools for performing web searches (Google Custom Search) and crawling web pages. (Node.js/TypeScript) - PDF Creator Server (
pdf-creator-server): Provides a tool to generate PDF documents from HTML content using Playwright and Pillow. (Python) - Presentation Creator Server (
presentation-creator-server): Provides tools to assemble PowerPoint presentations from HTML slide content and generate PDFs from HTML. (Python)
Quick Start (Recommended)
The easiest way to use these MCP servers is via npm packages. No need to clone or build!
Published Packages
All TypeScript/Node.js servers are now available on npm:
- information-retrieval-mcp-server: Web search and crawling
- media-tools-mcp-server: Image/video search and media understanding
- presentation-creator-mcp-server: Create presentations and PDFs from HTML
Installation Options
Option 1: Using npx (Easiest - No Installation Required)
Add to your MCP client config (e.g., claude_desktop_config.json):
Location of config file:
- MacOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"information-retrieval": {
"command": "npx",
"args": ["-y", "information-retrieval-mcp-server"],
"env": {
"GOOGLE_API_KEY": "your-google-api-key",
"GOOGLE_CSE_ID": "your-custom-search-engine-id"
}
},
"media-tools": {
"command": "npx",
"args": ["-y", "media-tools-mcp-server"],
"env": {
"UNSPLASH_ACCESS_KEY": "your-unsplash-key",
"GEMINI_API_KEY": "your-gemini-key"
}
},
"presentation-creator": {
"command": "npx",
"args": ["-y", "presentation-creator-mcp-server"]
}
}
}
API Keys Required:
- Information Retrieval Server:
- Google Custom Search API key (Get it here)
- Custom Search Engine ID (Create one here)
- Media Tools Server:
- Unsplash API key (Get it here)
- Google Gemini API key (Get it here)
- Presentation Creator Server: No API keys required
Option 2: Global npm Installation
npm install -g information-retrieval-mcp-server
npm install -g media-tools-mcp-server
npm install -g presentation-creator-mcp-server
Then configure with just the command name:
{
"mcpServers": {
"information-retrieval": {
"command": "information-retrieval-mcp-server",
"env": { /* ... */ }
}
}
}
Advanced Setup (Build from Source)
If you prefer to build from source or need to modify the servers:
1. Clone the Repository
git clone <repository-url> # Replace <repository-url> with the actual URL
cd unified-mcp-suite
2. Media Tools Server (media-tools-server)
(Node.js/TypeScript)
a. Navigate to Directory:
cd media-tools-server
b. Install Dependencies:
npm install
c. Build the Server:
npm run build
(This compiles the TypeScript code into JavaScript in the build directory.)
d. Obtain API Keys:
- Unsplash API Key: Required for image search. Create an account and register an application at https://unsplash.com/developers.
- Google API Key: Required for video search/understanding and image understanding.
- Enable the "YouTube Data API v3" and "Vertex AI API" (for Gemini) in your Google Cloud Console project: https://console.cloud.google.com/
- Create an API key under "APIs & Services" -> "Credentials". Restrict the key if necessary.
e. Configure MCP Client:
Add the following configuration to your MCP client's settings file (e.g., cline_mcp_settings.json or claude_desktop_config.json). Replace placeholders with your actual API keys and the correct absolute path to the built server file.
{
"mcpServers": {
// ... other servers
"media-tools": {
"command": "node",
"args": ["C:/path/to/unified-mcp-suite/media-tools-server/build/index.js"], // <-- UPDATE THIS PATH
"env": {
"UNSPLASH_ACCESS_KEY": "YOUR_UNSPLASH_API_KEY", // <-- ADD YOUR KEY
"GOOGLE_API_KEY": "YOUR_GOOGLE_API_KEY" // <-- ADD YOUR KEY
},
"disabled": false, // Set to false to enable
"autoApprove": []
}
// ... other servers
}
}
f. Navigate Back:
cd ..
3. Information Retrieval Server (information-retrieval-server)
(Node.js/TypeScript)
a. Navigate to Directory:
cd information-retrieval-server
b. Install Dependencies:
npm install
c. Build the Server:
npm run build
d. Obtain API Keys:
- Google Custom Search API:
- Enable the "Custom Search API" in your Google Cloud Console project: https://console.cloud.google.com/
- Create an API key under "APIs & Services" -> "Credentials".
- Create a Custom Search Engine and get its ID: https://programmablesearchengine.google.com/
e. Configure MCP Client:
Add the following configuration to your MCP client's settings file. Replace placeholders with your actual API key, Search Engine ID, and the correct absolute path.
{
"mcpServers": {
// ... other servers
"information-retrieval": {
"command": "node",
"args": ["C:/path/to/unified-mcp-suite/information-retrieval-server/build/index.js"], // <-- UPDATE THIS PATH
"env": {
"GOOGLE_API_KEY": "YOUR_GOOGLE_API_KEY", // <-- ADD YOUR KEY
"GOOGLE_CSE_ID": "YOUR_CUSTOM_SEARCH_ENGINE_ID" // <-- ADD YOUR ID
},
"disabled": false, // Set to false to enable
"autoApprove": []
}
// ... other servers
}
}
f. Navigate Back:
cd ..
4. PDF Creator Server (pdf-creator-server)
(Python)
a. Navigate to Directory:
cd pdf-creator-server
b. Create and Activate Virtual Environment:
# Create environment
python -m venv .venv
# Activate environment
# Windows (Command Prompt/PowerShell)
.\.venv\Scripts\activate
# macOS/Linux (bash/zsh)
# source .venv/bin/activate
c. Install Dependencies:
pip install -r requirements.txt
d. Install Playwright Browsers: (Required for PDF generation)
playwright install
e. Configure MCP Client:
Add the following configuration to your MCP client's settings file. Replace the placeholder with the correct absolute path to the Python executable within the virtual environment and the server script.
{
"mcpServers": {
// ... other servers
"pdf-creator": {
// UPDATE python path to point to the .venv executable
"command": "C:/path/to/unified-mcp-suite/pdf-creator-server/.venv/Scripts/python.exe", // Windows example
// "command": "/path/to/unified-mcp-suite/pdf-creator-server/.venv/bin/python", // macOS/Linux example
"args": ["C:/path/to/unified-mcp-suite/pdf-creator-server/pdf_creator_server.py"], // <-- UPDATE THIS PATH
"env": {}, // No specific environment variables needed by default
"disabled": false, // Set to false to enable
"autoApprove": []
}
// ... other servers
}
}
f. Deactivate Virtual Environment (Optional):
deactivate
g. Navigate Back:
cd ..
5. Presentation Creator Server (presentation-creator-server)
(Python)
a. Navigate to Directory:
cd presentation-creator-server
b. Create and Activate Virtual Environment:
# Create environment
python -m venv .venv
# Activate environment
# Windows (Command Prompt/PowerShell)
.\.venv\Scripts\activate
# macOS/Linux (bash/zsh)
# source .venv/bin/activate
c. Install Dependencies:
pip install -r requirements.txt
d. Install Playwright Browsers: (Required for screenshotting HTML slides)
playwright install
e. Configure MCP Client:
Add the following configuration to your MCP client's settings file. Replace the placeholder with the correct absolute path to the Python executable within the virtual environment and the server script.
{
"mcpServers": {
// ... other servers
"presentation-creator": {
// UPDATE python path to point to the .venv executable
"command": "C:/path/to/unified-mcp-suite/presentation-creator-server/.venv/Scripts/python.exe", // Windows example
// "command": "/path/to/unified-mcp-suite/presentation-creator-server/.venv/bin/python", // macOS/Linux example
"args": ["C:/path/to/unified-mcp-suite/presentation-creator-server/presentation_creator_server.py"], // <-- UPDATE THIS PATH
"env": {}, // No specific environment variables needed by default
"disabled": false, // Set to false to enable
"autoApprove": []
}
// ... other servers
}
}
f. Deactivate Virtual Environment (Optional):
deactivate
g. Navigate Back:
cd ..
Running the Servers
Once configured in your MCP client, the servers should start automatically when the client launches. You can then use the tools provided by each server through your MCP client interface.
Example Configuration File
An example configuration file, example_cline_mcp_settings.json, is included in the root of this repository. You can use this as a template for configuring the servers in your MCP client (like Cline).
To use the example:
- Locate your MCP client's actual settings file (e.g.,
c:\Users\YourUser\AppData\Roaming\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.jsonfor Cline in VS Code on Windows). - Copy the server configurations from
example_cline_mcp_settings.jsoninto your actual settings file, merging them with any existing server configurations you might have. - Crucially, update all placeholder paths (e.g.,
C:/absolute/path/to/...) to reflect the actual absolute path where you cloned theunified-mcp-suiterepository on your system. - Replace all placeholder API keys (e.g.,
YOUR_GOOGLE_API_KEY_HERE) with your own keys obtained during the setup steps. - Ensure the
commandpath for the Python servers correctly points to thepython.exe(Windows) orpython(macOS/Linux) executable inside the respective.venvdirectory you created.
Related Servers
translateimage
translate image
SoftCroft Doc Server MCP
Manages BookStack documentation for the SoftCroft multi-agent system, aiding in Sage 200 to Odoo 17 migration.
Wishfinity +W
Universal wishlist for AI shopping. Save any product URL from any store to a persistent wishlist directly from AI conversations.
DAISYS
Generate high-quality text-to-speech and text-to-voice outputs using the DAISYS platform.
legends-mcp
Chat with legendary founders & investors via MCP. 36 AI personas including Elon Musk, Warren Buffett, Steve Jobs, CZ, and more. No API key required - Claude does the roleplay!
Summarize MCP
Converts text summaries to speech using OpenAI's Text-to-Speech API and plays them in the background.
MCP Google Calendar Integration
Integrates with the Google Calendar API to fetch calendar events for a given date.
GSuite
Interact with Google products, including Gmail and Calendar.
openalex-mcp-server
270M+ academic publications
Intugle MCP
Generate automated semantic models using data engineering agents and built data products on demand
