7,370 packages found
Open-Meteo Weather MCP by UnClick
Open-Meteo Weather tools for weather, forecast, open-meteo by UnClick.
1Panel MCP Server
Sep 06, 2026Developer SkillsLocal Service12033mcp-sentry: A Sentry MCP servermcp-100GithubAPREMIUM22A Model Context Protocol server for retrieving and analyzing issues from Sentry.io. This server provides tools to inspect error reports, stacktraces, and other debugging information from your Sentry account.
ACTIVE DEVELOPMENT - WORK IN PROGRESS
MCP Gateway and Registry
ADB Friend
Android ADB CLI tool including integrated MCP Server with common adb actions used during development
ado-mcp-server
<!-- filepath: /workspaces/ado-mcp-server/README.md --> # ado-mcp-server A Model Context Protocol (MCP) server for Azure DevOps. ## Overview This project implements an MCP server intended for integration with Azure DevOps. The server is built using the `@modelcontextprotocol/sdk` and allows extension through a modular tool registration system. ## Features - MCP server implementation using the official SDK - Extensible architecture for registering project and work item tools - Full support for Azure DevOps Work Item Tracking (WIT) REST API endpoints (create, get, update, delete, list, query, batch, revisions, comments, attachments, relations) - Runs over STDIO for integration with other systems ## Getting Started ### Prerequisites - Node.js (version 16+ recommended) - npm ### Installation Clone the repository and install dependencies: ```bash git clone https://github.com/dmedellin/ado-mcp-server.git cd ado-mcp-server npm install ``` ### Usage Start the MCP server: ```bash npm start ``` The server will run over STDIO and can be integrated with compatible clients. ### Testing You can test the server using the Model Context Protocol Inspector: ```bash npx @modelcontextprotocol/inspector ``` ## Project Structure - `index.js` - Entry point; initializes and runs the MCP server. - `features/` - Directory for registering project and work item tools. ## Scripts - `npm start` - Start the MCP server. - `npm test` - (Currently not implemented.) ## Configuration No additional configuration is required for basic usage. You may extend functionality by adding new tools in the `features` directory. ## Dependencies - [`@modelcontextprotocol/sdk`](https://www.npmjs.com/package/@modelcontextprotocol/sdk) - [`zod`](https://www.npmjs.com/package/zod) ## License ISC --- *This project is not affiliated with Microsoft or Azure DevOps.* ## Tools - `linkWorkItems` — Link two Azure DevOps work items (e.g., parent-child, related, etc.). - **Input:** - `sourceId` (number/string): The ID of the source work item (e.g., the child in a parent-child link). - `targetId` (number/string): The ID of the target work item (e.g., the parent in a parent-child link). - `linkType` (string, optional): The type of link (default: `System.LinkTypes.Hierarchy-Forward` for parent-child). - `comment` (string, optional): Optional comment for the link operation. - **Permissions:** Requires permission to edit work items in the Azure DevOps project. - **Example:** ```json { "sourceId": 123, "targetId": 456, "linkType": "System.LinkTypes.Hierarchy-Forward" } ``` - `unlinkWorkItems` — Remove a link (e.g., parent-child, related) between two Azure DevOps work items. - **Input:** - `sourceId` (number/string): The ID of the source work item (the one holding the link). - `targetId` (number/string): The ID of the target work item (the one being linked to). - `linkType` (string, optional): The type of link to remove (default: `System.LinkTypes.Hierarchy-Forward` for parent-child). - **Permissions:** Requires permission to edit work items in the Azure DevOps project. - **Example:** ```json { "sourceId": 123, "targetId": 456, "linkType": "System.LinkTypes.Hierarchy-Forward" } ``` - For more link types, see [Azure DevOps documentation](https://learn.microsoft.com/en-us/azure/devops/boards/queries/link-types-work-items?view=azure-devops).
Alpha_vantage
# Alpha Vantage MCP Server This MCP server provides access to financial data from Alpha Vantage. It includes tools to retrieve OHLCV data, dividend data, and ETF holdings. ## Tools ### get_ticker_ohlcv Get specific ticker OHLCV data (Open, High, Low, Close, Volume) for a given date. **Input:** ```json { "ticker": "AAPL", "infoType": "close", "date": "2024-01-02" } ``` **Example Usage:** To get the closing price of AAPL on January 2, 2024: ```bash mcp call alpha_vantage get_ticker_ohlcv '{"ticker": "AAPL", "infoType": "close", "date": "2024-01-02"}' ``` ### get_ticker_dividend Get dividend data for a specific ticker. **Input:** ```json { "ticker": "AAPL" } ``` **Example Usage:** To get the dividend data for AAPL: ```bash mcp call alpha_vantage get_ticker_dividend '{"ticker": "AAPL"}' ``` ### get_etf_holdings Get the holdings data for a specific ETF. **Input:** ```json { "ticker": "SPY" } ``` **Example Usage:** To get the holdings data for SPY: ```bash mcp call alpha_vantage get_etf_holdings '{"ticker": "SPY"}' ``` ## Configuration The server requires an Alpha Vantage API key to be set in the environment variable `ALPHAVANTAGE_API_KEY`. To configure the MCP server, add the following to your MCP settings: ```json { "mcpServers": { "github.com/septemhill/alpha_vantage_mcp": { "command": "npx", "args": [ "-y", "alpha_vantage_finance" ], "env": { "ALPHAVANTAGE_API_KEY": "YOUR_API_KEY" } } } } ``` Replace `YOUR_API_KEY` with your Alpha Vantage API key.
Amap Weather Server
# 说明 这是一个通过Node.js开发的"天气查询" MCP Server,通过高德地图的api实现。 # 注意 在[高德开放平台](https://console.amap.com/dev/key/app)创建apikey,然后配置 AMAP_KEY ```json { "mcpServers": { "amap-weather-server": { "command": "npx", "args": ["-y", "amap-weather-server"], "env": { "AMAP_KEY": "" } } } } ```
Android Debug Bridge
Integrate with Android devices via ADB for effective android device management, app control, and automated testing workflows.
Android Debug Bridge MCP
Control Android devices via Android Debug Bridge (ADB): automate testing, manage apps, capture screens, analyze UI, and simulate input with natural-language…
Android Mcp Toolkit
A growing collection of MCP tools for Android Development. Currently features a deterministic Figma-SVG-to-Android-XML converter, with plans for Gradle analysis, Resource management, and ADB integration tools.
Android Mobile Mcp
Android Mobile MCP is a server implementation that bridges the Model Context Protocol with Android device automation capabilities. It provides a comprehensive set of tools for interacting with Android devices, including UI element detection, touch interactions, text input, app ma
Android-Preference-Editor MCP Server
Sep 06, 2026Developer SkillsLocal Service1201MCPControlCheffromspacenpmGithubUnvalidatedWindows 控制服务器,用于模型上下文协议(Model Context Protocol),提供对鼠标、键盘、窗口管理、屏幕捕获和剪贴板操作的编程控制。需要 Windows 操作系统,且可选配置环境变量以设置自动化提供程序。
Ankr API MCP Server
Sep 06, 2026Developer SkillsLocal Service1231Waroom MCPtopotalnpmGithubAPREMIUM1621Waroom MCP Server to access Waroom API through Model Context Protocol. Requires WAROOM_API_KEY environment variable to be set for API access.
any-chat-completions-mcp MCP Server
Sep 05, 2026Developer SkillsLocal Service112149GiveRadar MCP Servermatt-timmermansGithubAPREMIUM450Remote MCP server exposing 8.7M+ registered charities across 60+ countries, sourced from official government registries. Read-only, no key required to start. Connects to the endpoint https://giveradar.com/mcp/ via JSON-RPC 2.0 over HTTPS.
any-script-mcp
any-script-mcp: Run shell scripts and execute CLI tools defined in YAML, with custom shells (bash, Python, Node.js, Deno), env params and flexible timeouts.
Anytype
Transform any OpenAPI specification into callable tools. Easily test an API, handle authentication, and generate schemas from any OpenAPI spec.
Apidog Tests Mcp
Unofficial Apidog MCP server, that gives ability to work with testing features of ApiDog.
Apillon MCP Server
Sep 06, 2026Developer SkillsLocal Service1083Manim MCP 服务器abhiemjGithubUnvalidated一个 MCP 服务器,能够执行 Manim Python 脚本以生成动画并返回渲染后的视频。通过环境变量(如 MANIM_EXECUTABLE)进行配置,以指定 Manim 可执行文件的路径。
API Tester
Automate API testing with Postman collections or OpenAPI specs. Generate test cases in TypeScript, JavaScript, and Python for comprehensive api testing.
APICK Finance
Korean bank account verification: holder name lookup, 1 KRW deposit, bank codes
Brickway
Read-only access to your Brickway LEGO and alt-brick collection: sets, builds, figures, catalog.
Cardog
VIN decode, Canadian listings, market quotes, TC+NHTSA recalls. Full API: https://cardog.app/docs.md
HVAC Builder
Design, solve and simulate HVAC systems from real components, weather years and buildings.
Interbang
Moderated usability testing: read sessions, notes, transcripts, reports, and draft test scenarios.
RideDesk Developer Docs
Developer docs for building on RideDesk: booking API, widgets, per-account booking MCP. No auth.
Code → ДСТУ/GOST 19.701-90 (ISO 5807) flowcharts: 10 languages, 8 export formats, OAuth
Safeship
API monitoring from your editor. Checks the JSON your endpoints return, not just the status code.
Spoonjoy
Your personal recipe kitchen: save, fork, and cook recipes, build cookbooks, and shopping lists.
NinoxNet
Ninox ERP by NinoxNet: manage inventory, sales, HR and goals, and build in-app dashboards.
Argo CD MCP Server
Sep 06, 2026Developer SkillsLocal Service126154Terraform Registry MCP 服务器thrashr888GithubAPREMIUM105一个 Model Context Protocol (MCP) 服务器,提供与 Terraform Registry API 交互的工具。支持查询提供者信息、资源详情、模块元数据以及 Terraform Cloud 操作。可通过环境变量(如 TERRAFORM_REGISTRY_URL 和 TFC_TOKEN)进行配置,以访问私有注册表。
Argus - Repository Analysis and Security Assessment Tool
A Model Context Protocol (MCP) server for analyzing GitLab repositories and performing security assessments.
astro-mcp
MCP server to support Astro project development
A Template MCP Server
A template for how to build an MCP server
Atlassian Jira MCP Server
Sep 06, 2026Business ServicesHybrid Service14434Lotus Wisdom MCP ServerlinxulenpmGithubAPREMIUM2An MCP server implementation providing a tool for problem-solving using the Lotus Sutra's wisdom framework, combining analytical thinking with intuitive wisdom.
➡️ attestable-mcp-server
Verify that any MCP server is running the intended and untampered code via hardware attestation.
Bundle multiple URLs into one short link. QR codes, access counters, redirect lookup. Free.
Authn8
MCP server for Authn8 2FA code access
AutoDev MCP Examples
MCP Examples for AutoDev
AWS MCP Servers
AWS MCP Servers — specialized MCP servers that bring AWS best practices directly to your development workflow
AWS SSO MCP Server
Sep 06, 2026Developer SkillsHybrid Service1236MCP RandturlockmikenpmGithubAPREMIUM7MCP server providing various random generation utilities including UUID, numbers, strings, passwords, Gaussian distribution, dice rolling, and card drawing.
Azure DevOps
Boost your productivity by managing Azure DevOps projects, pipelines, and repos in VS Code. Streamline dev workflows with ease.
Azure TableStore MCP Server
Sep 06, 2026Developer SkillsLocal Service1195钉钉 MCP 服务器darrenyaonpmGithubAPREMIUM312DingTalk MCP Server implementation for Model Context Protocol enabling interaction with DingTalk workspace. Requires environment variables DINGTALK_APP_KEY and DINGTALK_APP_SECRET for app credentials.
Background Job
Enhance your business management process software with Background Job, enabling BPM in software via asynchronous long-running shell command execution.
Backlog Mcp Server
## Requirements - Nodejs 20以上, NPM 10以上 ## 機能 - [x] [課題情報の取得](https://developer.nulab.com/ja/docs/backlog/api/2/get-issue/) - [x] [課題コメントの取得](https://developer.nulab.com/ja/docs/backlog/api/2/get-comment-list/) - [x] [課題添付ファイルのダウンロード](https://developer.nulab.com/ja/docs/backlog/api/2/get-issue-attachment/) - [x] [課題添付ファイル一覧の取得](https://developer.nulab.com/ja/docs/backlog/api/2/get-list-of-issue-attachments/) - [x] [課題共有ファイル一覧の取得](https://developer.nulab.com/ja/docs/backlog/api/2/get-list-of-linked-shared-files/) - [x] [課題の追加](https://developer.nulab.com/ja/docs/backlog/api/2/add-issue/) - [x] [課題情報の更新](https://developer.nulab.com/ja/docs/backlog/api/2/update-issue/) - [x] [課題コメントの追加](https://developer.nulab.com/ja/docs/backlog/api/2/add-comment/) - [x] [課題コメント情報の更新](https://developer.nulab.com/ja/docs/backlog/api/2/update-comment/) - [x] [種別一覧の取得](https://developer.nulab.com/ja/docs/backlog/api/2/get-issue-type-list/) ## Install - VSCode > CLINE > MCP Servers 設定画面 > Configure MCP Servers <img width="1064" alt="Screenshot 2025-04-18 at 11 56 28" src="https://github.com/user-attachments/assets/783b72a0-ba0f-4769-8222-d5754d48573d" /> - 下記のようにbacklog-mcp-serverの設定を追加します。 - BACKLOG_API_TOKENは、https://your-space-here.backlog.jp/EditApiSettings.action - BACKLOG_SPACEは、 https://your-space-here.backlog.jp ならば、your-space-here です ```jsonc { "mcpServers": { "backlog": { "autoApprove": [ "get_issue", "get_issue_comments", "get_issue_attachments", "get_issue_attachment", "get_issue_shared_files", "get_issue_types" ], "disabled": false, "timeout": 60, "command": "npx", "args": [ "-y", "https://github.com/pj8/backlog-mcp-server" ], "env": { "BACKLOG_API_TOKEN": "****", "BACKLOG_SPACE": "your-space-here" }, "transportType": "stdio" } } } ``` ## 使い方 - CLINEにBacklog課題URLを与えて概要を説明させるなど
Bitrefill
Explore Bitrefill to buy gift cards, mobile refills, eSIMs, and digital services instantly with cryptocurrency.
SRI — MCP Server Inspector
2,000+ MCP servers read at source level. Know what one does before you connect. Free, no key.
Ble Hrm Server
A Python MCP server for Bluetooth Low Energy (BLE) Heart Rate Monitoring. Connects to BLE HRM devices, monitors heart rate, and provides tools for heart rate data analysis and visualization.
blender-mcp
MCP server to run code in Blender