Discover Awesome MCP Servers

Extend your agent with 53,307 capabilities via MCP servers.

All53,307
Anki MCP Server

Anki MCP Server

Cermin dari

Auth0 MCP Server

Auth0 MCP Server

MCP-GITHUB-SERVER

MCP-GITHUB-SERVER

Okta MCP Server

Okta MCP Server

Cermin dari

Docker MCP Server 🐳⚡

Docker MCP Server 🐳⚡

This is mcp server for docker basic create conatiner , get conatiner,and stop/start/remove

MCP JS Server Template

MCP JS Server Template

Simplified MCP Server Template for Node.js

MCPM CLI

MCPM CLI

A command-line tool for managing MCP servers in Claude App.

MCP Continuity Server (Versão Simplificada)

MCP Continuity Server (Versão Simplificada)

Versão corrigida do MCP Continuity Server compatível com SDK 1.7.0

🚀 GitHub MCP Server - FastAPI Implementation

🚀 GitHub MCP Server - FastAPI Implementation

Whisper Speech Recognition MCP Server

Whisper Speech Recognition MCP Server

Server MCP pengenalan suara berperforma tinggi berbasis Faster Whisper, menyediakan kemampuan transkripsi audio yang efisien.

lumina

lumina

centralized local knowledge base and mcp servers

Developer MCP Server

Developer MCP Server

Sistem manajemen konteks yang kuat yang mempertahankan konteks secara persisten di seluruh sesi pengkodean, membantu tim pengembangan melacak struktur proyek, dependensi, dan kemajuan.

Superargs

Superargs

Provide AI MCP server args during runtime.

System Resource Monitor

System Resource Monitor

MCP Filesystem Server

MCP Filesystem Server

Mirror of

hyper-mcp

hyper-mcp

A fast, secure MCP server that extends its capabilities through WebAssembly plugins.

Simple Time MCP CLI

Simple Time MCP CLI

Simple MCP server for time-related functions with CLI mode support

OceanBase MCP Server

OceanBase MCP Server

Server Protokol Konteks Model yang memungkinkan asisten AI untuk berinteraksi secara aman dengan database OceanBase dengan mencantumkan tabel, membaca data, dan menjalankan kueri SQL melalui antarmuka yang terkontrol.

Google Search Tool

Google Search Tool

Alat Node.js berbasis Playwright yang melewati mekanisme anti-scraping mesin pencari untuk menjalankan pencarian Google. Alternatif lokal untuk SERP API dengan integrasi server MCP.

mcp-server-weaviate

mcp-server-weaviate

Mirror of

Bond MCP Server

Bond MCP Server

Atlassian Data Center MCP

Atlassian Data Center MCP

MCP servers for the Atlassian products (Bitbucket, Confluence, JIRA) of the Data Center version

Git MCP Server Knowledge Base

Git MCP Server Knowledge Base

Comprehensive knowledge base for Git MCP Server implementation, configuration, and troubleshooting

Mcpmapserver

Mcpmapserver

Here are a few possible translations, depending on the specific nuance you're looking for: * **Peta Google server MCP untuk studi:** (This is a fairly literal translation and likely the best option if you're referring to a specific "MCP server" related to Google Maps.) * **Server MCP Peta Google untuk pembelajaran:** (This emphasizes the "learning" aspect of "study.") * **Server MCP Peta Google untuk keperluan studi:** (This is a more formal way of saying "for study purposes.") **Important Considerations:** * **MCP Server:** The term "MCP server" is quite technical. If you're not sure what it means, it's worth clarifying. It could refer to a server related to map data processing, or something else entirely. * **Context is Key:** The best translation depends on the context in which you're using the phrase. Without more context, I recommend using: **Peta Google server MCP untuk studi.**

mcp-youtube-transcripts

mcp-youtube-transcripts

That sounds like you're looking for a way to use an MCP (Mod Configuration Protocol, often used in Minecraft modding) server to retrieve YouTube transcripts. Unfortunately, that's not a direct or common use case for MCP servers. Here's why, and what you *can* do: * **MCP Servers and YouTube Transcripts are Unrelated:** MCP servers are primarily used for decompiling, deobfuscating, and remapping Minecraft code. They help modders understand and modify the game. They have nothing to do with accessing external APIs like the YouTube Data API. * **YouTube Data API is the Key:** To get YouTube transcripts, you need to use the YouTube Data API. This API allows you to programmatically access information about YouTube videos, including their transcripts (if available). **How to Get YouTube Transcripts (Without MCP):** Here's a breakdown of how you'd typically retrieve YouTube transcripts: 1. **Get a YouTube Data API Key:** * Go to the Google Cloud Console: [https://console.cloud.google.com/](https://console.cloud.google.com/) * Create a new project (or use an existing one). * Enable the YouTube Data API v3. * Create API credentials (an API key). Keep this key secret! 2. **Choose a Programming Language:** You'll need to write code to interact with the YouTube Data API. Popular choices include: * **Python:** Easy to learn and has libraries for making API requests. * **JavaScript:** Useful if you want to do this in a web browser or with Node.js. * **Java:** If you're already familiar with Java (perhaps from Minecraft modding), this could be a good option. 3. **Write the Code:** Here's a basic example in Python using the `google-api-python-client` library: ```python from googleapiclient.discovery import build # Replace with your API key API_KEY = "YOUR_API_KEY" YOUTUBE_VIDEO_ID = "VIDEO_ID_HERE" # e.g., "dQw4w9WgXcQ" def get_transcript(video_id, api_key): youtube = build("youtube", "v3", developerKey=api_key) try: captions = youtube.captions().list( part="snippet", videoId=video_id ).execute() # Find the caption track you want (e.g., English) for caption_track in captions["items"]: if caption_track["snippet"]["language"] == "en": # Example: English caption_id = caption_track["id"] break else: return "No English transcript found." # No English transcript # Download the transcript transcript = youtube.captions().download(id=caption_id, tfmt="srt").execute() return transcript except Exception as e: return f"Error: {e}" if __name__ == "__main__": transcript = get_transcript(YOUTUBE_VIDEO_ID, API_KEY) if transcript: print(transcript) # Print the transcript (in SRT format) else: print("Could not retrieve transcript.") ``` **Explanation of the Python Code:** * **`googleapiclient.discovery.build`:** Creates a YouTube API service object. * **`youtube.captions().list(...)`:** Gets a list of available caption tracks for the video. * **Looping through `captions["items"]`:** Finds the desired language (e.g., "en" for English). * **`youtube.captions().download(...)`:** Downloads the transcript in SRT format (SubRip Text). You can change `tfmt` to other formats like `ttml` (Timed Text Markup Language). * **Error Handling:** The `try...except` block handles potential errors (e.g., video doesn't have captions, API key is invalid). 4. **Install the Library (if needed):** If you're using Python, you'll need to install the `google-api-python-client` library: ```bash pip install google-api-python-client ``` **Important Considerations:** * **API Quotas:** The YouTube Data API has usage quotas. Be mindful of how many requests you're making. If you exceed your quota, your requests will be throttled. * **Transcript Availability:** Not all YouTube videos have transcripts. Some are automatically generated, and their accuracy can vary. Others are manually created. * **SRT Format:** The SRT format is a common subtitle format. You can find libraries to parse and work with SRT files in most programming languages. **In summary:** Forget about using an MCP server for this. Use the YouTube Data API directly with a programming language like Python, JavaScript, or Java. The code example above provides a starting point. Remember to replace `"YOUR_API_KEY"` and `"VIDEO_ID_HERE"` with your actual API key and the YouTube video ID you want to get the transcript for.

Filesystem MCP Server

Filesystem MCP Server

Puppeteer

Puppeteer

Add-on MCP Puppeteer Server untuk Home Assistant

MCP Notes Server

MCP Notes Server

Cline Mcp Server Test

Cline Mcp Server Test

ClineとMCP Serverの接続をテストするためのリポジトリです。

Morpho API MCP Server

Morpho API MCP Server

Cermin dari