Packages
4946 resultsgcloud-mcp
Official Google Cloud MCP server suite enabling AI assistants to interact with Google Cloud infrastructure through natural language. Includes four servers: gcloud CLI execution, observability (logs/metrics/traces), Cloud Storage management, and Backup/DR operations.
iTerm MCP
MCP server that lets AI models execute commands in an active iTerm2 terminal session. Provides tools to write commands, read output lines selectively for token efficiency, and send control characters (Ctrl+C, Ctrl+Z). User and AI share the same terminal window for real-time collaboration.
unity-mcp
Bridges AI assistants (Claude, Cursor, VS Code) with Unity Editor via MCP, enabling LLMs to manage assets, control scenes, edit scripts, and automate game development tasks.
Absinthe
Full-featured GraphQL implementation for Elixir, built to integrate with Phoenix. Absinthe handles schema definition (SDL-first or code-first), query execution, mutations, subscriptions (real-time via Phoenix Channels), and batched data loading via Dataloader. Leverages Elixir's concurrency model for efficient query resolution — each resolver can run in parallel using Tasks.
CMake
The de-facto standard build system generator for C and C++ projects. CMake generates build files for Ninja, Make, Visual Studio, Xcode, and other build systems from a single CMakeLists.txt configuration. Modern CMake (3.x) uses target-based configuration with target_link_libraries, target_include_directories, and target_compile_options for clean dependency propagation. Used by LLVM, Qt, OpenCV, gRPC, Boost, and virtually every major C++ project.
Cloudflare Workers AI
Serverless AI inference platform running open-weight models at Cloudflare's global edge network. Supports text generation (Llama, Mistral), embeddings, image classification, speech-to-text, and translation via REST API — no GPU setup required.
Encore
Backend development platform that combines a type-safe backend framework with automatic infrastructure provisioning. Encore parses TypeScript/Go source code annotations (API endpoints, services, databases, queues) and automatically provisions the required cloud infrastructure on AWS, GCP, or Azure — or runs a complete local development environment with all infrastructure. Generates OpenAPI docs, distributed tracing, and architecture diagrams automatically from code.
Hazelcast
In-memory distributed data grid and stream processing platform. Hazelcast embeds in Java applications or runs as a standalone cluster. Core data structures: IMap (distributed HashMap with TTL, near-cache, entry listeners), IQueue, ISet, IList, ITopic (pub/sub), AtomicLong, Lock, Semaphore — all distributed across cluster members. Hazelcast Jet (unified in 5.x) enables distributed stream processing with SQL over streams. Spring Cache integration via @Cacheable maps to IMap. Hazelcast Platform includes IMDG + Jet. Use cases: session clustering, distributed locking, agent result caching across multiple service instances, and distributed counters.
Jimeng AI Image/Video MCP Server
MCP server for Jimeng AI (即梦) — ByteDance's generative AI platform for creating images and videos from prompts. Enables AI agents to generate images and videos, mix images, use reference images, and create visual content programmatically through ByteDance's Jimeng AI service.
Neynar
Managed Farcaster API that provides a clean REST interface to Farcaster social data without running your own Hub node. Neynar handles the Hub infrastructure and provides endpoints for user lookup, cast feeds, reactions, follows, channel data, Frames interactions, and posting casts (including managed Signer creation). The de facto standard way to build Farcaster applications via API.
Play Framework
Reactive web framework for Scala and Java built on Akka Streams and Netty. Play is the leading full-stack Scala web framework — handles HTTP routing, JSON/HTML templating, WebSockets, server-sent events, and reactive database access. Play 3.x (2023) migrated from Akka to Apache Pekko (Akka's open-source fork) due to Akka's license change. Provides non-blocking async request handling via Pekko Streams, a routing DSL for Scala and Java, built-in JSON support via play-json, and Twirl template engine for HTML. Used by LinkedIn, The Guardian, and major financial institutions.
PostGrid API
PostGrid REST API — programmatic physical mail sending (letters, postcards, checks) and address verification, enabling agents to automate direct mail campaigns, compliance notices, and physical document delivery without manual print-and-mail workflows.
PyAutoGUI
Cross-platform GUI automation library — controls mouse, keyboard, and takes screenshots programmatically. PyAutoGUI features: pyautogui.moveTo(x, y), pyautogui.click(), pyautogui.typewrite('text'), pyautogui.press('enter'), pyautogui.screenshot(), pyautogui.locateOnScreen() (image template matching), pyautogui.hotkey('ctrl', 'c'), pyautogui.scroll(), drag and drop, window management, PAUSE between actions, FAILSAFE (move mouse to corner to abort), and cross-platform support (Windows, macOS, Linux). Primary Python library for desktop GUI automation for agent computer-use tasks.
SeaORM
Async ORM for Rust built on SQLx with a familiar Active Record and Data Mapper pattern. Provides entity definitions, query building, migrations (SeaMigration), and model relations with async execution. Positioned as the Rust equivalent of ActiveRecord or Hibernate — generate entities from existing databases or define code-first. Part of the SeaQL ecosystem (SeaQuery for query builder, SeaMigration for migrations).
Supabase Edge Functions API
Deno-based serverless edge functions tightly integrated with Supabase's Postgres database, auth, and storage, deployable via REST API or CLI for backend logic close to users.
Vercel AI SDK
TypeScript toolkit for building AI-powered web applications with first-class streaming support, React/Next.js hooks, multi-provider abstraction, and tool/agent capabilities.
Vercel API
Frontend cloud platform with git-based deployments, edge network, serverless functions, and native Next.js integration for deploying web apps globally.
AWS DynamoDB API
AWS DynamoDB is a fully managed NoSQL key-value and document database with single-digit millisecond latency at any scale — accessed via AWS SDK or DynamoDB REST API with IAM auth.
Archestra
Cloud-native platform that serves as a centralized MCP registry, gateway, and orchestrator with enterprise governance, security controls, cost monitoring, and prompt injection defense for managing MCP servers across organizations.
Combine (Apple)
Apple's reactive programming framework for Swift. Provides Publisher/Subscriber model for composing async operations — similar to RxSwift but built into the platform. Combine is integrated with SwiftUI (@Published, ObservableObject), URLSession, NotificationCenter, and Core Data. Use operators like map, filter, merge, combineLatest to compose async data streams from agent networking, user input, and system events.