Discover Awesome MCP Servers
Extend your agent with 28,691 capabilities via MCP servers.
- All28,691
- 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
MCP Server Boilerplate
Model Context Protocol (MCP)サーバーのシンプルなボイラープレート実装です。
attest-mcp-server
An MCP server that exposes tools for issuing scoped agent credentials, delegating narrower child credentials, handling approvals, revoking task trees, and retrieving audit trails and evidence packets.
Metro Logs MCP
Captures and provides access to React Native console logs from Metro bundler, enabling AI assistants to retrieve, filter, and search app logs in real-time without manual copy/paste.
todoist-mcp
Todoist REST API v2 の完全な統合。タスク、プロジェクト、セクション、コメント、ラベルの管理をサポート。
linuxSshMcpServer
了解しました。SSH接続を確立し、シェルコマンドまたはファイルをターゲットのLinuxサーバーに送信する方法を説明します。 **1. SSH接続の確立 (SSH Connection Establishment)** 最も一般的な方法は、`ssh` コマンドを使用することです。 ```bash ssh <ユーザー名>@<サーバーのIPアドレスまたはホスト名> ``` 例: ```bash ssh user123@192.168.1.100 ssh myuser@myserver.example.com ``` * `<ユーザー名>`: ターゲットサーバー上のユーザー名。 * `<サーバーのIPアドレスまたはホスト名>`: ターゲットサーバーのIPアドレスまたはホスト名。 初回接続時には、サーバーのフィンガープリントを確認するプロンプトが表示される場合があります。 信頼できるサーバーであれば `yes` と入力します。 パスワード認証が有効になっている場合は、パスワードの入力を求められます。 **より安全な方法: SSHキー認証 (More Secure Method: SSH Key Authentication)** パスワード認証よりも安全な方法として、SSHキー認証を使用することを強く推奨します。 * **SSHキーペアの生成:** ```bash ssh-keygen -t rsa -b 4096 ``` これにより、公開鍵 (`id_rsa.pub`) と秘密鍵 (`id_rsa`) が生成されます。 パスフレーズを設定するかどうか尋ねられます。 セキュリティを強化するために、パスフレーズを設定することを推奨します。 * **公開鍵のターゲットサーバーへのコピー:** ```bash ssh-copy-id <ユーザー名>@<サーバーのIPアドレスまたはホスト名> ``` または、`ssh-copy-id` がない場合は、以下のコマンドを使用します。 ```bash cat ~/.ssh/id_rsa.pub | ssh <ユーザー名>@<サーバーのIPアドレスまたはホスト名> "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat >> ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys" ``` これらのコマンドを実行すると、パスワードの入力を求められます。 * **SSHキー認証での接続:** 上記の手順が完了すると、パスワードなしでSSH接続できるようになります。 ```bash ssh <ユーザー名>@<サーバーのIPアドレスまたはホスト名> ``` **2. シェルコマンドの送信 (Sending Shell Commands)** SSH接続が確立されたら、シェルコマンドを直接実行できます。 ```bash ssh <ユーザー名>@<サーバーのIPアドレスまたはホスト名> "<実行するコマンド>" ``` 例: ```bash ssh user123@192.168.1.100 "ls -l /home/user123" ssh myuser@myserver.example.com "sudo apt update && sudo apt upgrade -y" ``` 複数のコマンドを実行する場合は、セミコロン (`;`) で区切ります。 ```bash ssh user123@192.168.1.100 "mkdir mydir; cd mydir; touch myfile.txt" ``` **3. ファイルの送信 (Sending Files)** ファイルをターゲットサーバーに送信するには、`scp` コマンドを使用します。 ```bash scp <送信するファイル> <ユーザー名>@<サーバーのIPアドレスまたはホスト名>:<送信先のディレクトリ> ``` 例: ```bash scp myfile.txt user123@192.168.1.100:/home/user123/ scp /path/to/myfolder/important.log myuser@myserver.example.com:/var/log/ ``` * `<送信するファイル>`: 送信するファイルのパス。 * `<送信先のディレクトリ>`: ターゲットサーバー上の送信先のディレクトリ。 ディレクトリを指定しない場合は、ユーザーのホームディレクトリに送信されます。 **ターゲットサーバーからファイルを取得する場合:** ```bash scp <ユーザー名>@<サーバーのIPアドレスまたはホスト名>:<取得するファイルのパス> <保存先のディレクトリ> ``` 例: ```bash scp user123@192.168.1.100:/home/user123/myfile.txt . scp myuser@myserver.example.com:/var/log/important.log /tmp/ ``` * `<取得するファイルのパス>`: ターゲットサーバー上の取得するファイルのパス。 * `<保存先のディレクトリ>`: ローカルマシン上の保存先のディレクトリ。 `.` は現在のディレクトリを意味します。 **補足 (Additional Notes):** * **権限 (Permissions):** ターゲットサーバー上のディレクトリに書き込み権限があることを確認してください。 * **ファイアウォール (Firewall):** ターゲットサーバーのファイアウォールがSSH接続 (通常はポート22) を許可していることを確認してください。 * **エラー処理 (Error Handling):** コマンドの実行結果やファイルの送信結果を注意深く確認し、エラーが発生した場合は原因を特定して修正してください。 * **セキュリティ (Security):** SSHキー認証を使用し、パスフレーズを設定することを強く推奨します。 また、不要なポートは閉じ、ファイアウォールを設定するなど、セキュリティ対策を講じてください。 * **`rsync` コマンド:** より高度なファイル同期が必要な場合は、`rsync` コマンドの使用を検討してください。 `rsync` は、差分のみを転送するため、大きなファイルの同期に効率的です。 これらの情報が、SSH接続の確立とシェルコマンド/ファイルの送信に役立つことを願っています。
X(Twitter) V2 MCP Server
Twitter/X API v2 とやり取りするためのツールを提供する MCP サーバー実装
ECL MCP Server
Provides comprehensive access to the Europa Component Library (ECL) design system with semantic search across 50+ components, code examples, accessibility requirements, design tokens, and validation tools for building European Commission websites.
Tavily Web Search MCP Server
Enables web search capabilities through the Tavily API, allowing users to perform web searches and retrieve information from the internet through natural language queries.
USASpending MCP Server
Enables research of federal contract awards and competitive landscape analysis using the USASpending.gov API. Supports searching for contracts, analyzing recipients, tracking spending trends, and identifying market opportunities in government contracting.
MCP Anthropic Server (
AnthropicのプロンプトエンジニアリングAPIと連携するためのツールを提供するMCPサーバー。タスク記述とフィードバックに基づいて、プロンプトの生成、改善、テンプレート化を可能にする。
MegaTool
開発者が対応できるすべてのMCPサーバー:非常に開発中。ここにはドラゴンがいます!(危険!)
Telegram MCP Server
An MCP server that enables interaction with Telegram messaging platform, allowing users to retrieve unread messages, fetch entity information, and send messages through natural language interfaces.
Stocks MCP Server
Provides real-time access to financial market data including stock quotes, company information, cryptocurrency exchange rates, historical options chains, and time series data through the Alpha Vantage API.
mcp-micromanage
Controls coding agents by enforcing structured implementation plans with PRs and commits as work units, requiring user review at each commit checkpoint to prevent agents from going off track. Includes a visualization dashboard for tracking progress in real-time.
AusLaw MCP
Enables users to search and retrieve Australian legislation and case law with full-text content extraction. Provides structured results with citation metadata and OCR support for archival PDFs.
CreateOS MCP
Deploy full-stack apps from AI. 75+ tools: GitHub/Docker deploy, databases, environments, security, billing.
Marketing Brain
Provides standardized brand guidelines and structured content templates for marketing assets like blogs, emails, and social media. It serves as a central source of truth for brand voice and strategy through an extensible file-based system.
Claude MCP Get
Windowsシステム上でModel Context Protocol (MCP) サーバーをインストールおよび構成するための包括的なツールキット
Jokes MCP Server
A Model Context Protocol server that delivers jokes on demand, allowing users to request various types of jokes (Chuck Norris, Dad jokes, etc.) from Microsoft Copilot Studio and GitHub Copilot.
CrewAI MCP Server
MCP 서버로 CrewAI와 Claude를 연결하는 통합 서비스
Ubersuggest MCP Server
An MCP server that integrates Neil Patel's Ubersuggest SEO platform with Cursor IDE, enabling AI-assisted SEO analysis directly within your development environment.
Obsidian MCP Server
Enables Claude to read, write, search, and manage Obsidian vault notes with Git-backed sync support for multi-device access and extensible AI workflows.
safe-docx
Editing of existing Word (.docx) files with formatting preservation. Supports comments, footnotes, and document comparison.
USCardForum MCP Server
Enables AI assistants to interact with USCardForum, a Discourse-based community focused on US credit cards and points, providing access to topics, user profiles, search, and authenticated actions like notifications and bookmarks.
SolanaOracle
12 MCP tools for DeFi risk & compliance on Solana
Tavily MCP Server
Provides AI assistants with real-time web search capabilities and intelligent data extraction from web pages through Tavily's advanced search API.
TypeScript MCP Server Boilerplate
A boilerplate project for quickly developing Model Context Protocol (MCP) servers using TypeScript SDK, with example implementations of calculator tools, greeting functions, and resource management.
telegram-mcp
A minimal Model Context Protocol server for interacting with Telegram bots via MTProto. It provides simple tools to send messages and retrieve chat history while serving as an easy-to-extend reference for developers.
mcpServerStudy
MCPサーバーの勉強
Mattermost MCP Server
This server enables interaction with Mattermost workspaces to manage channels, messages, threads, and user profiles via the Mattermost REST API. It provides a comprehensive suite of tools for reading channel history, posting messages, and managing reactions within a trusted environment.