Discover Awesome MCP Servers
Extend your agent with 20,552 capabilities via MCP servers.
- All20,552
- Developer Tools3,867
- Search1,714
- Research & Data1,557
- AI Integration Systems229
- Cloud Platforms219
- Data & App Analysis181
- Database Interaction177
- Remote Shell Execution165
- Browser Automation147
- Databases145
- Communication137
- AI Content Generation127
- OS Automation120
- Programming Docs Access109
- Content Fetching108
- Note Taking97
- File Systems96
- Version Control93
- Finance91
- Knowledge & Memory90
- Monitoring79
- Security71
- Image & Video Processing69
- Digital Note Management66
- AI Memory Systems62
- Advanced AI Reasoning59
- Git Management Tools58
- Cloud Storage51
- Entertainment & Media43
- Virtualization42
- Location Services35
- Web Automation & Stealth32
- Media Content Processing32
- Calendar Management26
- Ecommerce & Retail18
- Speech Processing18
- Customer Data Platforms16
- Travel & Transportation14
- Education & Learning Tools13
- Home Automation & IoT13
- Web Search Integration12
- Health & Wellness10
- Customer Support10
- Marketing9
- Games & Gamification8
- Google Cloud Integrations7
- Art & Culture4
- Language Translation3
- Legal & Compliance2
UniversalDeFi AI
Um serviço de backend que executa transações em múltiplas blockchains, permitindo que usuários gerenciem carteiras, transfiram tokens e interajam com contratos inteligentes usando a estrutura do Protocolo de Contexto de Modelo.
Salesforce MCP Server
Security Scanner MCP
Automatically detects security vulnerabilities in AI-generated code, scanning for hardcoded secrets, injection flaws, XSS, weak cryptography, authentication issues, path traversal, and vulnerable dependencies across JavaScript, Python, Java, and Go.
SuperDataAnalysis - DataMaster_MCP
Provides powerful data analysis capabilities for AI systems with functions for data import/export, SQL querying, statistical analysis, and data processing.
Document Q&A Server
Permite consultar documentos através de um backend Langflow usando perguntas em linguagem natural, fornecendo uma interface para interagir com fluxos de Q\&A de documentos Langflow.
Office Word MCP Server
Enables AI assistants to create, read, and manipulate Microsoft Word documents with comprehensive formatting, table creation, content management, and document protection capabilities. Supports advanced operations like merging documents, PDF conversion, and rich text formatting through a standardized interface.
GoWeb3 Data
GoWeb3 Data MCP Server provides events and news curated by GoWeb3.fyi
dev-prompt-mcp
An MCP server that registers customizable prompt templates as tools for natural language interaction. It supports hot-reloading and easy extension via YAML or JSON files to automate tasks like code review, refactoring, and content summarization.
Real Estate MCP Server
A comprehensive Model Context Protocol server for real estate data management that provides tools and resources for property listings, agent management, market analysis, client relationships, and area intelligence.
Inbound Email MCP Server
Enables AI assistants to interact with the Inbound Email API to manage domains, endpoints, and email communications. Users can send or schedule emails, manage webhooks, and retrieve email threads through natural language commands.
MCP fal.ai Image Server
Enables AI-powered image generation from text prompts using fal.ai models directly within IDEs. Supports multiple models, customizable parameters, and saves generated images locally with accessible file paths.
kaggle-mcp
Okay, I understand. I can act as a helpful assistant that translates text from English to Portuguese and also describes how I can interact with the Kaggle API to provide tools for searching and downloading datasets, and a prompt for generating EDA notebooks. Here's a breakdown of how I can do that: **1. Translation (English to Portuguese):** * I can translate any English text you provide into Portuguese. Just give me the English text, and I'll provide the Portuguese translation. For example: * **You:** "Hello, how are you?" * **Me:** "Olá, como você está?" **2. Kaggle API Interaction (Description):** While I can't directly execute code or interact with external APIs like the Kaggle API, I can describe how you would use it and provide the necessary code snippets and explanations. Here's how it would work: * **Kaggle API Setup:** You would need to install the Kaggle API client on your system (usually via `pip install kaggle`). You'd also need to authenticate by downloading your `kaggle.json` file from your Kaggle account settings and placing it in the appropriate directory (usually `~/.kaggle/`). * **Searching for Datasets:** You can use the Kaggle API to search for datasets based on keywords. Here's an example of how you would do it in Python: ```python import os os.environ['KAGGLE_CONFIG_DIR'] = '/content' # or wherever your kaggle.json is from kaggle.api.kaggle_api_extended import KaggleApi api = KaggleApi() api.authenticate() search_term = "machine learning" # Example search term datasets = api.dataset_list(search=search_term) for dataset in datasets: print(f"Dataset: {dataset.title}") print(f"URL: https://www.kaggle.com/datasets/{dataset.ref}") print(f"Description: {dataset.description}") print("-" * 20) ``` * **Explanation:** * The code imports the necessary libraries. * `api.authenticate()` authenticates you with the Kaggle API using your credentials. * `api.dataset_list(search=search_term)` searches for datasets matching the `search_term`. * The code then iterates through the results and prints the dataset title, URL, and description. * **Downloading Datasets:** Once you've found a dataset you want to download, you can use the Kaggle API to download it. Here's an example: ```python import os os.environ['KAGGLE_CONFIG_DIR'] = '/content' # or wherever your kaggle.json is from kaggle.api.kaggle_api_extended import KaggleApi api = KaggleApi() api.authenticate() dataset_name = "username/dataset-name" # Replace with the actual dataset name (e.g., "uciml/iris") download_path = "./data" # The directory where you want to download the dataset api.dataset_download_files(dataset_name, path=download_path, unzip=True) print(f"Dataset '{dataset_name}' downloaded to '{download_path}'") ``` * **Explanation:** * `dataset_name` should be replaced with the actual name of the dataset (found in the dataset's URL on Kaggle). * `download_path` specifies the directory where the dataset will be downloaded. * `api.dataset_download_files()` downloads the dataset and, if `unzip=True`, automatically unzips it. **3. Prompt for Generating EDA Notebooks:** I can provide a prompt that you can use with a large language model (LLM) like GPT-3 or similar to generate an EDA (Exploratory Data Analysis) notebook. The prompt would include instructions on what kind of analysis to perform. Here's an example prompt: ``` You are an expert data scientist. Generate a Python notebook using Pandas, Matplotlib, and Seaborn to perform exploratory data analysis (EDA) on the [DATASET_NAME] dataset. The dataset is located at [DATASET_PATH]. The notebook should include the following sections: 1. **Introduction:** A brief overview of the dataset and the goals of the EDA. 2. **Data Loading and Inspection:** * Load the dataset into a Pandas DataFrame. * Display the first few rows of the DataFrame. * Print the shape of the DataFrame. * Print the data types of each column. * Check for missing values and handle them appropriately (e.g., imputation or removal). 3. **Descriptive Statistics:** * Calculate and display descriptive statistics for numerical columns (mean, median, standard deviation, min, max, etc.). * Calculate and display value counts for categorical columns. 4. **Data Visualization:** * Create histograms for numerical columns to visualize their distributions. * Create box plots for numerical columns to identify outliers. * Create bar charts for categorical columns to visualize their frequencies. * Create scatter plots to explore relationships between numerical variables. * Create heatmaps to visualize correlations between numerical variables. 5. **Insights and Conclusions:** Summarize the key findings from the EDA and draw conclusions about the dataset. Be sure to include clear and concise comments throughout the notebook to explain each step. Use appropriate visualizations to effectively communicate the data insights. Assume the dataset is a CSV file. Replace [DATASET_NAME] with the actual name of the dataset and [DATASET_PATH] with the actual path to the dataset file. ``` * **Explanation:** * This prompt tells the LLM to act as a data scientist and generate a Python notebook. * It specifies the libraries to use (Pandas, Matplotlib, Seaborn). * It outlines the sections that the notebook should include, covering data loading, inspection, descriptive statistics, and data visualization. * It provides specific instructions for each section, such as creating histograms, box plots, and scatter plots. * It emphasizes the importance of clear comments and effective visualizations. * It includes placeholders for the dataset name and path, which you would need to replace with the actual values. **How to Use Me:** 1. **Translation:** Provide me with the English text you want to translate to Portuguese. 2. **Kaggle API:** Ask me how to perform a specific task with the Kaggle API (e.g., "How do I search for datasets about image classification?"). I'll provide the code snippet and explanation. Remember that you'll need to execute the code yourself. 3. **EDA Notebook Generation:** Ask me to generate a prompt for creating an EDA notebook. I'll provide a prompt like the one above, which you can then use with an LLM. Let me know what you'd like me to do first!
MCP Agent Social Media Server
Provides social media functionality for AI agents, enabling them to login with unique handles, read filtered posts, and create posts or replies within team-based discussions.
DBeaver MCP Server
A Model Context Protocol server that enables AI assistants to access and query 200+ database types through existing DBeaver connections without additional configuration.
Bunq MCP
A Model Context Protocol server for Bunq that enables interaction with the Bunq banking API through OAuth integration.
mcp2tcp
Uma ponte que conecta hardware físico com grandes modelos de linguagem de IA através do Protocolo de Contexto de Modelo (MCP), permitindo o controle de dispositivos TCP por meio de linguagem natural.
preloop
MCP proxy & AI automation platform with a human approval layer
MCP Server with Docker
A project that integrates Model Control Protocol with OpenAI's API, allowing OpenAI to access and utilize tools exposed by a dockerized MCP server.
MCP Materials Server
Provides AI assistants with access to materials science databases, enabling search and analysis of material properties, crystal structures, phase diagrams, and elastic properties through the Materials Project API.
This is MCP server for test
Servidor MCP para teste
Plasma Testnet MCP Server
Enables AI assistants to interact with the Plasma Network blockchain testnet, supporting XPL token transfers, transaction monitoring, gas estimation, wallet balance queries, and smart contract interactions through natural language.
SmartThings MCP Server
Enables control and monitoring of SmartThings smart home devices through natural language, supporting switches, sensors, refrigerators, and other IoT devices with real-time status queries and command execution.
Google Cloud Logging MCP Server
Enables AI assistants to query, search, and analyze logs across Google Cloud Platform projects. It supports advanced filtering by severity or resource type and provides detailed log entry retrieval and project listing capabilities.
Azure Analysis Services MCP Server by CData
Azure Analysis Services MCP Server by CData
Trade Agent
Trade Agent
MCP Docker Demo
A demonstration MCP server implementation with Docker support that provides a simple hello-world tool and includes a web-based inspector for interactive testing and exploration of MCP tools.
MCP File System
Um servidor que implementa o Protocolo de Contexto de Modelo e que fornece operações de sistema de arquivos (leitura/escrita, gerenciamento de diretórios, movimentação de arquivos) através de uma interface padronizada com controles de segurança para diretórios permitidos.
Traa Mcp
⚡ go-mcp
⚡ Um SDK Go intuitivo e com segurança de tipos para construir servidores MCP com facilidade e confiança.
MCP Server - Images
A Model Context Protocol server that enables AI-powered image generation through Stability AI and Black Forest Labs APIs, allowing users to create images from detailed text prompts with customizable settings and comprehensive metadata tracking.