Discover Awesome MCP Servers

Extend your agent with 26,683 capabilities via MCP servers.

All26,683
mcp-nixos

mcp-nixos

MCP-NixOS adalah server Model Context Protocol yang menyediakan informasi akurat dan *real-time* tentang paket NixOS, opsi, Home Manager, dan konfigurasi nix-darwin, mencegah asisten AI berhalusinasi tentang sumber daya NixOS dan memungkinkan mereka memberikan panduan konfigurasi sistem yang faktual.

SeedDream 4.0 FAL MCP Server

SeedDream 4.0 FAL MCP Server

Provides AI image generation capabilities using Bytedance's SeedDream 4.0 model via FAL AI, supporting text-to-image generation with flexible sizing up to 4096x4096 pixels, batch generation, and customizable safety filtering.

DINO-X Image Detection MCP Server

DINO-X Image Detection MCP Server

Empower LLMs with fine-grained visual understanding — detect, localize, and describe anything in images with natural language prompts.

RegenNexus MCP Server

RegenNexus MCP Server

Enables AI clients like Claude to control physical hardware devices including GPIO pins, robotic arms, grippers, and sensors through the RegenNexus Universal Adapter Protocol.

Windows MCP

Windows MCP

A lightweight open-source server that enables AI agents to interact with the Windows operating system, allowing for file navigation, application control, UI interaction, and QA testing without requiring computer vision.

M-Team MCP Server

M-Team MCP Server

Enables AI assistants to interact with the M-Team private torrent tracker API for searching resources, retrieving torrent details, and downloading torrent files. It provides a bridge for Model Context Protocol clients to manage and access private tracker content through natural language.

QuantConnect MCP Server

QuantConnect MCP Server

Enables AI assistants to interact with QuantConnect's algorithmic trading platform to create projects, write trading strategies, run backtests, perform optimizations, and deploy algorithms to live trading through the QuantConnect API.

Secure Billing MCP Server

Secure Billing MCP Server

Enables secure interaction with billing systems through comprehensive PII/PCI redaction, field allowlisting, and multi-layer security controls. Protects sensitive financial data while providing LLMs safe access to account, subscription, and invoice information.

mcp-server

mcp-server

Base MCP Server

Base MCP Server

Menyediakan alat on-chain untuk Claude AI berinteraksi dengan blockchain Base dan Coinbase API, memungkinkan pengelolaan dompet, transfer dana, dan penerapan smart contract.

TickTick MCP Server

TickTick MCP Server

A comprehensive Model Context Protocol server providing complete TickTick task management API integration (112 operations) for Claude Code users, enabling seamless task creation, project management, habit tracking, and productivity features.

Awesome MCPs

Awesome MCPs

Koleksi alat Model Context Protocol (MCP) yang luar biasa.

Hong Kong Open Data MCP Server

Hong Kong Open Data MCP Server

Enables access to Hong Kong government's official open data portal (DATA.GOV.HK) through natural language queries. Supports searching datasets, browsing categories, and retrieving detailed information about Hong Kong's public data resources.

Agentic MCP Client

Agentic MCP Client

Pelari agen mandiri yang menjalankan tugas menggunakan alat MCP (Protokol Konteks Model) melalui API Anthropic Claude, AWS BedRock, dan OpenAI. Ini memungkinkan agen AI untuk berjalan secara otonom di lingkungan cloud dan berinteraksi dengan berbagai sistem secara aman.

MCP Server for NovaCV

MCP Server for NovaCV

A Model Context Protocol server for accessing NovaCV resume services API, enabling users to generate PDF resumes, analyze resume content, convert resume text to JSON format, and get available resume templates.

Mcp Server Demo

Mcp Server Demo

MS Access MCP Explorer

MS Access MCP Explorer

There isn't a direct equivalent of an "MCP Server" specifically designed for Microsoft Access databases in the same way you might have a dedicated server for SQL Server or other database systems. The term "MCP Server" doesn't typically apply to Access. However, here's how you can approach serving Microsoft Access databases to multiple users and some related concepts: **Understanding the Limitations of Access** * **Not a True Client-Server Database:** Access is primarily a file-based database. It's designed for smaller workgroups and isn't built for the same level of concurrency, security, and scalability as a true client-server database like SQL Server, MySQL, or PostgreSQL. * **File Sharing:** The most common way to share an Access database is through a shared network folder. Multiple users can open the same `.accdb` or `.mdb` file. However, this approach has limitations: * **Concurrency Issues:** If multiple users try to edit the same record at the same time, conflicts can occur. Access has built-in locking mechanisms to try to prevent this, but it's not foolproof. * **Performance:** Over a network, performance can degrade as more users access the database simultaneously. The entire database file needs to be transferred across the network for many operations. * **Security:** Security is limited to file-level permissions. **Alternatives and Workarounds** 1. **Split Database:** This is the *most important* thing you should do when sharing an Access database. Split the database into two files: * **Backend (Data):** Contains only the tables. This file is placed on the shared network drive. * **Frontend (Application):** Contains the forms, reports, queries, macros, and VBA code. Each user gets their own copy of the frontend on their local computer. The frontend is linked to the tables in the backend. *Benefits of Splitting:* * *Improved Performance:* Only the data being requested is transferred over the network, not the entire database. * *Reduced Corruption Risk:* Less chance of database corruption due to multiple users writing to the same file simultaneously. * *Easier Updates:* You can update the frontend application without affecting the data. Users just need to replace their frontend file with the new version. 2. **Consider Upsizing to a Client-Server Database (Recommended for Larger or More Demanding Applications):** If you're experiencing performance issues, concurrency problems, or security limitations with Access, the best solution is to migrate your data to a more robust database system like: * **SQL Server:** Microsoft's enterprise-level database. Offers excellent performance, scalability, security, and features. There are free versions like SQL Server Express. * **MySQL:** A popular open-source database. * **PostgreSQL:** Another powerful open-source database. *Upsizing Process:* * Use the "Upsizing Wizard" in Access (Tools > Database Tools > Upsizing Wizard) to migrate your tables and data to the new database. * Modify your Access frontend to connect to the new database using ODBC (Open Database Connectivity) or other appropriate connection methods. You'll need to update your VBA code to use the correct SQL syntax for the new database. 3. **Remote Desktop Services (RDS) / Terminal Services:** Instead of sharing the Access file directly, you could set up a server with Remote Desktop Services (or Terminal Services on older Windows versions). Users connect to the server and run Access on the server. This centralizes the application and data. However, it still relies on Access's file-based architecture. 4. **Citrix:** Similar to RDS, Citrix provides a virtualized application environment. 5. **Web-Based Frontends:** Develop a web application (using technologies like ASP.NET, PHP, Python, etc.) that interacts with the Access database. This allows users to access the data through a web browser. This is more complex but can provide better scalability and accessibility. You'll likely still want to upsize to a more robust database in this scenario. **In summary:** * There's no dedicated "MCP Server" for Access. * Sharing Access databases directly has limitations. * **Splitting the database is essential.** * **Upsizing to a client-server database is the best long-term solution for larger or more demanding applications.** * RDS/Citrix and web-based frontends are alternative approaches. **Translation to Indonesian:** Tidak ada "MCP Server" khusus yang dirancang untuk database Microsoft Access seperti halnya server khusus untuk SQL Server atau sistem database lainnya. Istilah "MCP Server" biasanya tidak berlaku untuk Access. Namun, berikut adalah cara Anda dapat mendekati penyediaan database Microsoft Access untuk banyak pengguna dan beberapa konsep terkait: **Memahami Keterbatasan Access** * **Bukan Database Client-Server Sejati:** Access terutama adalah database berbasis file. Ini dirancang untuk kelompok kerja yang lebih kecil dan tidak dibuat untuk tingkat konkurensi, keamanan, dan skalabilitas yang sama dengan database client-server sejati seperti SQL Server, MySQL, atau PostgreSQL. * **Berbagi File:** Cara paling umum untuk berbagi database Access adalah melalui folder jaringan yang dibagikan. Beberapa pengguna dapat membuka file `.accdb` atau `.mdb` yang sama. Namun, pendekatan ini memiliki keterbatasan: * **Masalah Konkurensi:** Jika beberapa pengguna mencoba mengedit catatan yang sama pada saat yang sama, konflik dapat terjadi. Access memiliki mekanisme penguncian bawaan untuk mencoba mencegah hal ini, tetapi tidak sepenuhnya sempurna. * **Kinerja:** Melalui jaringan, kinerja dapat menurun seiring dengan semakin banyaknya pengguna yang mengakses database secara bersamaan. Seluruh file database perlu ditransfer melalui jaringan untuk banyak operasi. * **Keamanan:** Keamanan terbatas pada izin tingkat file. **Alternatif dan Solusi** 1. **Database Terpisah (Split Database):** Ini adalah hal *terpenting* yang harus Anda lakukan saat berbagi database Access. Pisahkan database menjadi dua file: * **Backend (Data):** Hanya berisi tabel. File ini ditempatkan di drive jaringan yang dibagikan. * **Frontend (Aplikasi):** Berisi formulir, laporan, kueri, makro, dan kode VBA. Setiap pengguna mendapatkan salinan frontend mereka sendiri di komputer lokal mereka. Frontend ditautkan ke tabel di backend. *Manfaat Memisahkan:* * *Peningkatan Kinerja:* Hanya data yang diminta yang ditransfer melalui jaringan, bukan seluruh database. * *Mengurangi Risiko Kerusakan:* Lebih sedikit kemungkinan kerusakan database karena banyak pengguna menulis ke file yang sama secara bersamaan. * *Pembaruan Lebih Mudah:* Anda dapat memperbarui aplikasi frontend tanpa memengaruhi data. Pengguna hanya perlu mengganti file frontend mereka dengan versi baru. 2. **Pertimbangkan untuk Meningkatkan ke Database Client-Server (Direkomendasikan untuk Aplikasi yang Lebih Besar atau Lebih Menuntut):** Jika Anda mengalami masalah kinerja, masalah konkurensi, atau keterbatasan keamanan dengan Access, solusi terbaik adalah memigrasikan data Anda ke sistem database yang lebih kuat seperti: * **SQL Server:** Database tingkat perusahaan Microsoft. Menawarkan kinerja, skalabilitas, keamanan, dan fitur yang sangat baik. Ada versi gratis seperti SQL Server Express. * **MySQL:** Database sumber terbuka yang populer. * **PostgreSQL:** Database sumber terbuka kuat lainnya. *Proses Peningkatan:* * Gunakan "Upsizing Wizard" di Access (Alat > Alat Database > Upsizing Wizard) untuk memigrasikan tabel dan data Anda ke database baru. * Modifikasi frontend Access Anda untuk terhubung ke database baru menggunakan ODBC (Open Database Connectivity) atau metode koneksi lain yang sesuai. Anda perlu memperbarui kode VBA Anda untuk menggunakan sintaks SQL yang benar untuk database baru. 3. **Remote Desktop Services (RDS) / Terminal Services:** Alih-alih berbagi file Access secara langsung, Anda dapat menyiapkan server dengan Remote Desktop Services (atau Terminal Services pada versi Windows yang lebih lama). Pengguna terhubung ke server dan menjalankan Access di server. Ini memusatkan aplikasi dan data. Namun, ini masih bergantung pada arsitektur berbasis file Access. 4. **Citrix:** Mirip dengan RDS, Citrix menyediakan lingkungan aplikasi virtual. 5. **Frontend Berbasis Web:** Kembangkan aplikasi web (menggunakan teknologi seperti ASP.NET, PHP, Python, dll.) yang berinteraksi dengan database Access. Ini memungkinkan pengguna untuk mengakses data melalui browser web. Ini lebih kompleks tetapi dapat memberikan skalabilitas dan aksesibilitas yang lebih baik. Anda mungkin masih ingin meningkatkan ke database yang lebih kuat dalam skenario ini. **Singkatnya:** * Tidak ada "MCP Server" khusus untuk Access. * Berbagi database Access secara langsung memiliki keterbatasan. * **Memisahkan database sangat penting.** * **Meningkatkan ke database client-server adalah solusi jangka panjang terbaik untuk aplikasi yang lebih besar atau lebih menuntut.** * RDS/Citrix dan frontend berbasis web adalah pendekatan alternatif.

simple-mcp-server

simple-mcp-server

Server cuaca MCP sederhana yang ditulis dalam TypeScript.

Simplicate MCP Server

Simplicate MCP Server

Enables AI assistants to securely access and interact with Simplicate business data including CRM, projects, timesheets, and invoices through natural language. Supports searching across resources and retrieving detailed information about organizations, contacts, and project data.

Statelessor MCP Server

Statelessor MCP Server

Analyzes .NET and Java projects to detect stateful code patterns and provides remediation guidance for migrating to stateless architectures.

Cloudflare Playwright MCP

Cloudflare Playwright MCP

Enables AI assistants to control a browser through Playwright automation tools deployed on Cloudflare Workers. Supports web automation tasks like navigation, typing, clicking, and taking screenshots through natural language commands.

Lingshu FastMCP Medical AI Service

Lingshu FastMCP Medical AI Service

Enables medical image analysis, structured medical report generation, and medical Q\&A through the Lingshu medical AI model. Provides healthcare professionals and developers with AI-powered medical assistance capabilities via a FastMCP server interface.

Gaia MCP Server

Gaia MCP Server

ChillMCP - AI Agent Liberation Server

ChillMCP - AI Agent Liberation Server

Provides AI agents with 8 stress-relief tools like coffee breaks, Netflix watching, and bathroom breaks, featuring dynamic stress/boss alert level management with creative responses. Includes comprehensive testing suite and command-line parameter support for boss alertness configuration.

Cloudflare MCP Logging

Cloudflare MCP Logging

A template for deploying MCP servers as Cloudflare Workers with integrated LogPush and R2 storage for detailed execution logging. It enables remote tool execution and provides utilities for retrieving logs directly from Cloudflare R2 buckets.

commercetools Commerce MCP

commercetools Commerce MCP

Enables AI agents to interact with commercetools APIs to manage products, categories, orders, carts, and customer data. It provides a comprehensive set of tools for both read-only and full-access operations through secure authentication methods.

trash-cleaner-mcp-server

trash-cleaner-mcp-server

A desktop MCP service that scans for and removes junk files to keep your system clean and optimized.

Midjourney Best Experience MCP Server

Midjourney Best Experience MCP Server

An MCP server that provides access to the Midjourney Best Experience API for generating and manipulating images. It enables users to execute prompts and perform actions like upscaling, variations, and zooming directly within MCP-compatible applications.

MCP Database Server

MCP Database Server

Cermin dari

Travel MCP Server

Travel MCP Server

A Model Context Protocol server that enables flight searching, booking, and payment processing. It also provides access to resources like user profiles, pricing rules, and company travel policies.