Packages
4763 resultsZarr
Chunked, compressed N-dimensional array storage for Python — cloud-native alternative to HDF5. Zarr features: zarr.open() for local/cloud arrays, zarr.zeros/ones/empty for creation, chunk-based storage (chunk=(100, 100)), compression (Blosc, Zstd, Zlib, LZ4), multiple backends (local filesystem, S3, GCS, Azure Blob via fsspec), consolidated metadata, zarr.Group hierarchy, append-friendly arrays, zarr.convenience.copy_all for HDF5 migration, thread-safe reads, and parallel writes with synchronization. Cloud-native format — arrays stored as directories of chunk files readable from S3 without full download. Used with Dask for out-of-core processing of TB-scale datasets.
clickhouse-driver (Python)
Python driver for ClickHouse using the native TCP protocol. Provides synchronous and async (asynch) interfaces for connecting to ClickHouse databases from Python. More efficient than HTTP-based clickhouse-connect for high-throughput operations. Used by data engineers, analytics engineers, and Python ML pipelines that need to query or ingest into ClickHouse.
@grpc/grpc-js
Pure JavaScript/TypeScript gRPC implementation for Node.js. Supports unary RPCs, server streaming, client streaming, and bidirectional streaming. Works with protobuf code generation (@grpc/proto-loader) for type-safe service definitions. Used for high-performance inter-service communication in microservice architectures.
Apache Camel
Enterprise integration framework implementing the Enterprise Integration Patterns (EIP). Apache Camel provides 300+ connectors (Camel Components) for integrating with virtually any system: Kafka, AWS SQS/S3/Lambda, REST, HTTP, databases, FTP, SMTP, Salesforce, SAP, and more. Uses a DSL (Java, Kotlin, XML, YAML) to define integration routes: from() → process() → to(). Handles transformation, splitting, aggregating, filtering, error handling, and retry logic. Runs standalone or embedded in Spring Boot/Quarkus. The "Swiss Army knife" of Java integration.
Azure DevOps MCP
Official Microsoft MCP server that brings Azure DevOps capabilities directly to AI agents in VS Code, Claude Code, and Cursor. Manages projects, work items, builds, repositories, wikis, test plans, and iterations through natural language prompts.
Dagger CI/CD Pipeline Engine
Programmable CI/CD engine that runs containerized build pipelines defined in Go, Python, or TypeScript, executing consistently across local machines, CI systems, and cloud environments using a built-in GraphQL API.
Elastic APM API
Elastic APM Intake API — application performance monitoring server that receives traces, spans, transactions, errors, and metrics from APM agents via HTTP intake API, enabling agents to ingest custom telemetry data and query APM data stored in Elasticsearch for performance analysis.
Ensembl REST API
Ensembl REST API provides programmatic access to the Ensembl genome browser database, covering gene annotations, sequence retrieval, variant data, comparative genomics, and phenotype associations for 200+ species.
FullContact Identity Resolution API
Resolves fragmented identity signals (email, phone, social, MAIDs) into unified person and company profiles with employment, demographic, and social data for enrichment and identity verification use cases.
Grafana Loki
Prometheus-inspired horizontally scalable log aggregation system that indexes only metadata labels, making it cost-efficient for storing and querying agent logs.
Helidon
Oracle's lightweight Java microservice framework — supports two styles: Helidon MP (MicroProfile compliant, CDI injection, JAX-RS REST) and Helidon SE (functional reactive style, no IoC container). Helidon 4.x uses Java 21 Virtual Threads (Project Loom) for high concurrency without reactive programming complexity. Key features: GraalVM native image support (fast startup, low memory), built-in health checks (MicroProfile Health), metrics (MicroProfile Metrics), tracing (Jaeger/Zipkin), security (JWT, OAuth2, OIDC), and OpenAPI (MicroProfile OpenAPI). Oracle's alternative to Quarkus and Micronaut.
Lightdash
Open-source BI tool that builds directly on dbt models and metrics, exposing a REST API for programmatic chart and dashboard access — enabling agents to query curated business metrics without raw SQL.
Lunar
An API gateway platform that mediates between applications/AI agents and external APIs. Provides traffic visibility, policy enforcement, rate limiting, retries, circuit breakers, and cost optimization. Lunar MCPX aggregates multiple MCP servers into a single gateway with unified access control.
Mixpanel
Product analytics platform with REST APIs for ingesting user events and querying funnels, retention, segmentation, and cohort reports programmatically.
NVIDIA NIM API
Provides OpenAI-compatible LLM inference via NVIDIA-optimized TensorRT-LLM containers deployable on-premises or via nvidia.com hosted endpoints (api.nvcf.nvidia.com), supporting Llama, Mistral, Mixtral, Nemotron, and other models with hardware-accelerated throughput.
Nevergrad
Gradient-free optimization library by Meta (Facebook Research) — optimizes functions that don't have accessible gradients using evolutionary, Bayesian, and quasi-random methods. Nevergrad features: ng.optimizers.registry for 70+ optimizers (CMA-ES, DE, NGOpt, PSO, SQPCMA), ng.p.Scalar/Array/Choice/Dict for parameter spaces, instrumentation for complex mixed-type spaces, optimizer.ask()/tell() suggest-update API, budget parameter for evaluation count, multi-objective optimization, parallelism, and constraint support. NGOpt is the recommended adaptive meta-optimizer. Used for ML hyperparameter tuning, prompt optimization, neural architecture search, and any black-box optimization problem.
NewsAPI
Aggregates news articles and headlines from 150,000+ sources worldwide via a simple REST API.
ODMantic
AsyncIO MongoDB Object-Document Mapper (ODM) built on Pydantic and Motor. Define MongoDB document schemas as Pydantic models, then use ODMantic's AIOEngine for type-safe async CRUD operations. Works seamlessly with FastAPI's Pydantic models for MongoDB-backed agent services. ODMantic handles ObjectId serialization, embedded models, and type coercion — the async-native alternative to MongoEngine.
PSPDFKit API
Document processing API for PDF generation from HTML, form filling, digital signatures, annotations, and watermarking.
Pact
Consumer-driven contract testing framework that ensures microservices communicate as expected. The consumer writes tests defining what it expects from the provider API. Pact generates a contract (pact file) which the provider then verifies. Prevents integration failures by catching API breaking changes before deployment. Supports REST and message-based (async) contracts. PactFlow provides managed contract hosting.