Packages
7745 resultsTako Data Visualization MCP Server
Official MCP server from TakoData (TakoData org) for Tako — a data visualization and querying platform. Enables AI agents to query real-time data and generate charts, graphs, and visualizations by integrating Tako's data engine. Agents can generate on-demand data visualizations without coding chart libraries directly.
Testify
The most popular Go testing toolkit. Provides assertion helpers (assert package), mock generation (mock package), and test suite support (suite package). assert.Equal(t, expected, actual) gives readable failure messages instead of Go's default verbose if expected != actual pattern. mock.Mock enables interface mocking without code generation. The de-facto standard testing addition for Go.
Tools for MCP Server
Utility library and MCP server by Google Apps Script expert tanaikech providing tools to integrate Google Workspace services (Sheets, Docs, Drive, Gmail) with MCP-based AI agents. Enables GAS-powered MCP servers to expose Google Workspace data to agents through standardized tool interfaces.
WebMock
Ruby library for stubbing HTTP requests in tests — intercepts Net::HTTP, HTTParty, Faraday, RestClient, and other HTTP adapters to prevent real network calls and return controlled responses. WebMock: disables real HTTP connections by default in tests, stubs specific URLs with custom responses (stub_request(:post, 'https://api.openai.com/v1/chat/completions').to_return(body: '...')), verifies requests were made (have_requested(:get, /agent-api/)), and supports request body/header matching. Essential for testing agent services that call external APIs without making real API calls in unit/integration tests.
garmin_mcp
MCP server connecting to Garmin Connect to expose 96+ fitness and health data tools across activities, wellness, training, workouts, devices, gear, weight, challenges, nutrition, and user profile, covering 89% of the underlying python-garminconnect library.
iFlytek Workflow MCP Server
Official MCP server from iFlytek (iflytek org) — one of China's leading AI companies, known for voice AI and language technology. Enables AI agents to interact with iFlytek's workflow platform, triggering and managing AI-powered workflows, integrating with iFlytek's language models and AI services through their agentic workflow system.
AWS SDK for Python (Boto3)
The primary Python SDK for Amazon Web Services, providing a unified interface to 200+ AWS services including S3, EC2, Lambda, DynamoDB, SQS, and more. Agents use it to orchestrate cloud resources, read/write data, trigger serverless functions, and automate infrastructure.
BoardGameGeek MCP Server
Community MCP server providing access to the BoardGameGeek (BGG) API through MCP. Enables AI agents to retrieve board game information — game ratings, reviews, player counts, mechanics, categories, and community data from BGG's comprehensive board game database. Useful for game recommendation, collection management, and board game research agents.
Cheat Engine MCP Bridge
MCP server that bridges AI assistants to Cheat Engine, enabling natural language interaction with program memory for reverse engineering, debugging, and analysis. Supports reading memory, following pointer chains, scanning for patterns, analyzing structures, identifying C++ object types via RTTI, and setting hardware breakpoints including Ring -1 DBVM tracing.
OneSignal API
Multi-channel customer engagement platform enabling push notifications, email, SMS, and in-app messages via a unified API with advanced segmentation and A/B testing.
Ops MCP Server
Operations MCP server providing system administration and DevOps capabilities to AI agents — executing shell commands, managing system processes, monitoring server resources, handling file operations, and integrating operational tasks into agent-driven infrastructure management workflows. Designed for system operators and DevOps engineers.
ROS2 Nav2 MCP Server
ROS2 Nav2 MCP server enabling AI agents to control ROS2 Navigation2 (Nav2) — the standard ROS2 navigation stack for mobile robots — sending navigation goals, monitoring navigation progress, managing costmaps and path planners, controlling recovery behaviors, and integrating AI-driven navigation planning into autonomous mobile robot workflows.
Room (Android Jetpack)
Android Jetpack's SQLite abstraction library — the standard local database solution for Android apps. Room provides an annotation-based ORM: @Entity (table), @Dao (query interface with @Query/@Insert/@Update/@Delete), @Database (database definition). Compile-time query verification catches SQL errors before runtime. Native Kotlin coroutines and Flow support for async queries and reactive data streams. Integrates with LiveData and Paging 3. Used by virtually every Android app requiring local data persistence.
RuboCop
Ruby static analysis and linting tool — enforces Ruby community style guide via configurable 'cops' that check style, layout, lint, metrics, naming, performance, and security. RuboCop features: rubocop CLI with auto-fix (--autocorrect), .rubocop.yml configuration, department-based cop organization (Style, Layout, Lint, Metrics, Naming, Security), extension gems (rubocop-rails, rubocop-rspec, rubocop-performance), AllCops settings for include/exclude, inheritance from shared config (rubocop-rails, rubocop-ast), and integration with editors and CI. Example cops: Style/StringLiterals (single vs double quotes), Metrics/MethodLength (max 10 lines), Lint/UnusedVariable, Security/Eval. The de facto Ruby style enforcer used by Rails, Homebrew, and most major Ruby projects.
Scraps — Web Content Scraping MCP
Scraps MCP server enabling AI agents to scrape and extract structured content from web pages — fetching page HTML, parsing content, extracting text and links, and transforming web content into clean structured data for agent-driven research and content analysis workflows.
WeCom Bot MCP Server
MCP server for WeCom (WeChat Work / Weixin Enterprise) bot messaging. Enables AI agents to send messages, notifications, and alerts to WeCom group chats via WeCom's Bot Webhook API. Primarily used for automated notifications in Chinese enterprise environments using WeCom as their internal messaging platform.
Web Browser MCP Server
Web Browser MCP server enabling AI agents to control a headless web browser — navigating to URLs, clicking elements, filling forms, taking screenshots, and extracting page content, bringing full browser automation into agent-driven web research and data extraction workflows using Playwright or similar.
httpx
Full-featured HTTP client for Python — supports both sync and async APIs, HTTP/1.1 and HTTP/2, connection pooling, timeouts, redirects, authentication, and streaming. httpx features: httpx.Client() for sync, httpx.AsyncClient() for async, identical API for both, HTTP/2 support (http2=True), connection limits, timeout control (connect/read/write/pool), cookie jars, proxy support, SSL verification, streaming responses, multipart upload, custom transports, event hooks, and drop-in requests compatibility for sync usage. Designed for modern async Python including FastAPI test clients.
Delphi MCP Server
Official Delphi MCP server enabling AI agents to interact with Delphi — a platform for creating AI-powered digital twins and expert knowledge clones — querying personalized AI personas trained on expert knowledge, accessing domain-specific answers from Delphi-trained experts, and integrating expert knowledge systems into agent-driven research and consultation workflows.
GitHub Projects API (GraphQL)
GitHub Projects v2 is a flexible project management tool built on top of GitHub issues and pull requests. The GraphQL API enables agents to create and manage project boards, add items (issues/PRs/draft items), update custom fields, set status, and automate project workflows.