Packages
4763 resultsSolid Queue
Database-backed job queue for Rails — uses the application database (SQLite, PostgreSQL, MySQL) instead of Redis for background job processing. Solid Queue features: Active Job adapter (config.active_job.queue_adapter = :solid_queue), job persistence in DB tables (solid_queue_jobs, solid_queue_paused_queues), scheduled jobs, concurrency controls (key: 'agent-#{agent_id}' prevents duplicate agent processing), multi-queue workers, failed job visibility, Mission Control dashboard integration, and SKIP_TRANSACTION option for non-transactional workers. Default queue adapter in Rails 8+. Eliminates Redis dependency for agent apps that don't need Redis for other purposes.
Spring Security
Comprehensive security framework for Spring Boot applications handling authentication, authorization, CSRF protection, session management, and OAuth2/OIDC integration. Configures security via SecurityFilterChain beans with method-level security (@PreAuthorize, @Secured). The de facto standard for securing Spring Boot web applications and APIs. Integrates with Spring MVC, WebFlux, and Spring Cloud.
Vert.x
Eclipse toolkit for building reactive, event-driven applications on the JVM. Vert.x uses an actor-like Verticle model with an event bus for async communication between components. Non-blocking I/O via Netty underneath, with support for HTTP/2, WebSocket, gRPC, and reactive SQL. Polyglot — works in Java, Kotlin, Groovy, Scala. Used for high-concurrency agent backends where thousands of simultaneous connections are needed.
Yahoo Finance MCP
MCP server providing financial data from Yahoo Finance including stock prices, historical data, financial statements, options chains, analyst recommendations, and insider activity for use by AI agents.
ZITADEL
Open-source identity and access management (IAM) platform providing authentication, authorization, and user management. ZITADEL offers OIDC, OAuth 2.0, SAML 2.0, MFA, passkeys, machine-to-machine (service account) auth, and a management API. Designed as a modern alternative to Auth0/Okta that can be self-hosted or used as a cloud service. Features event sourcing architecture for auditability and GDPR-compliant data handling. Competitive with Keycloak but with better UX and cloud-native architecture.
ai-agent-team
Claude Code skill suite providing persistent conversation thread management with local semantic search. Includes role-based agent quick-start modes (PM, frontend, backend, QA), changelog generation, and software copyright material generation. Uses a bundled MiniLM embedding model for offline vector search over conversation history stored in SQLite.
frida-mcp
MCP implementation for the Frida dynamic instrumentation toolkit, enabling AI systems to manage processes, inject JavaScript into running applications, attach to devices, and perform runtime analysis through a standardized protocol.
iMCP
macOS application that provides an MCP server giving AI assistants access to Calendar, Contacts, Messages, Reminders, Maps, Location, and Weather through native macOS frameworks with privacy-first design.
mcp-server-docker
MCP server enabling AI assistants to manage Docker containers, images, networks, and volumes through natural language. Features a plan-apply compose workflow, container introspection for debugging, and remote Docker engine access via SSH.
mitmproxy
Interactive HTTPS proxy for security testing and API analysis — intercepts, inspects, and modifies HTTP/HTTPS traffic. mitmproxy features: mitmproxy interactive TUI, mitmdump for automated capture, mitmweb browser UI, Python addons API (request/response hooks), SSL/TLS interception (transparent MitM), WebSocket support, HTTP/2 and HTTP/3, upstream proxy chaining, HAR export, flow manipulation (modification of requests/responses in flight), replay/fuzz flows, and scripting via Python addon scripts. Three frontends: interactive (mitmproxy), CLI (mitmdump), and web (mitmweb). Used for API security testing, mobile app traffic analysis, and agent HTTP traffic inspection.
sbt (Scala Build Tool)
The standard build tool for Scala projects. sbt uses incremental compilation via Zinc (only recompiles changed files), an interactive shell for running tasks (compile, test, run, reload), plugin system for extending build behavior, and a Scala-embedded DSL for build configuration. Supports multi-project builds, cross-compilation (Scala 2.13 and 3.x), publishing to Maven Central and Sonatype, and integration with CI systems. sbt 2.0 is in development with improved build-level dependency management.
Amazon Advertising API
Amazon Advertising REST API for retail media and sponsored advertising campaign management. Enables AI agents to manage Sponsored Products, Sponsored Brands, and Sponsored Display campaign creation and optimization, handle bid management and keyword optimization for keyword and product targeting, access campaign performance reporting and attribution data for ROI analysis, retrieve product targeting and ASIN-level advertising analytics, manage Amazon DSP (demand-side platform) programmatic campaign management, handle budget allocation and dayparting controls for ad spend optimization, access Search Term Report and placement performance data for targeting refinement, retrieve brand analytics and share of voice data for competitive positioning, manage portfolio and campaign hierarchy organization, and integrate advertising data with retail analytics, BI, and revenue operations platforms.
Atera MSP Platform API
Atera REST API for managed service provider (MSP) all-in-one platform combining RMM, PSA, and helpdesk. Enables AI agents to manage IT tickets and work orders, monitor device health and alerts, manage customer (client) accounts, trigger remote scripts and patches, retrieve billing data, manage SLAs, and integrate MSP operations data with external tools and reporting systems.
Bull
Robust Node.js job queue library built on Redis. Supports producer/consumer patterns for background job processing with priorities, delays, repeatable jobs (cron), concurrency control, job lifecycle tracking, and automatic retry with backoff. Bull has a rich ecosystem with BullBoard/Arena UI dashboards. Note: Bull is in maintenance mode — BullMQ (TypeScript rewrite) is the recommended successor for new projects.
Finnhub API
Real-time REST and WebSocket API for stocks, forex, and cryptocurrency data, plus news, earnings, insider transactions, economic indicators, and sentiment analysis.
Global Stock Price MCP Server
MCP server for fetching current stock prices and key data for symbols across global markets. Enables AI agents to look up the latest stock prices, market data, and financial metrics for listed companies — supporting financial research, portfolio tracking, and market analysis workflows.
Hasura GraphQL Engine
Instant GraphQL and REST APIs over databases (Postgres, MySQL, SQL Server, MongoDB) with role-based permissions, realtime subscriptions, and event triggers.
Helius
Enhanced Solana RPC provider with additional APIs beyond standard JSON-RPC: Digital Asset Standard (DAS) API for NFT/token metadata, transaction parsing API, webhook event notifications, and historical transaction data. Used as the primary Solana infrastructure for most production dApps. Significantly more useful than raw Solana RPC due to enriched data.
Ktor
Asynchronous web framework for Kotlin built by JetBrains. Ktor uses Kotlin coroutines for non-blocking I/O, providing a lightweight and flexible HTTP server and client. Unlike Spring Boot, Ktor is micro-framework-style — you compose exactly what you need (routing, serialization, auth, compression). Used for building Kotlin REST APIs, microservices, and HTTP clients. Both server and client in one framework.
NiceGUI
Python-based web UI framework that wraps Quasar (Vue.js) components with a Python API. NiceGUI lets you build full web UIs purely in Python with reactive updates via WebSocket. Unlike Streamlit (which re-runs scripts), NiceGUI maintains persistent connections and component references — closer to React's model but in Python. Originally designed for robotics control panels (Zauberzeug makes autonomous vehicles), it works well for any real-time monitoring or control interfaces.