Packages
4946 resultsGoogle Places API
Provides place search, place details, nearby search, autocomplete, and place photo APIs for finding businesses, points of interest, and geographic locations. Returns structured data including address, hours, reviews, ratings, photos, and contact info.
Gradle
The standard JVM build tool for Android and the dominant alternative to Maven for Java/Kotlin projects. Gradle uses a Groovy or Kotlin DSL (build.gradle.kts) for build scripts with a task-based execution model, incremental builds (only rebuild changed components), build cache, and parallel test execution. Required for Android app builds and widely used in Kotlin Multiplatform projects. Supports plugins for Java, Kotlin, Android, Spring Boot, and more.
Grape
Opinionated micro-framework for creating REST-like APIs in Ruby. Grape provides a DSL for defining API endpoints with automatic parameter validation, content negotiation, versioning, and documentation (via grape-swagger). Works standalone on Rack or mounted inside Rails as an engine. Designed specifically for API development — no views, no sessions, no HTML. Key features: declarative parameter validation with coercion, automatic 406/415 responses for content type mismatches, entity/presenter layer via grape-entity, and route versioning via URL path or header.
GreyNoise API
GreyNoise API — classify internet background noise from mass scanners and bots, reducing SIEM alert fatigue by identifying and filtering benign and malicious internet-wide scanning activity.
HTTParty
Simple HTTP client for Ruby with automatic JSON and XML parsing. HTTParty provides a declarative mixin for creating API client classes: include HTTParty; base_uri 'https://api.example.com'; headers 'Authorization' => 'Bearer token'. Provides .get, .post, .put, .patch, .delete class methods returning parsed response objects. Auto-parses JSON and XML responses. Supports: query parameters, request bodies, timeouts, basic auth, digest auth, SSL configuration, and response code checking. Popular for quick API integrations in Rails apps and scripts — simpler than Faraday but less configurable.
Hyperliquid MCP Server
MCP server for Hyperliquid — a high-performance decentralized perpetuals exchange on its own L1 blockchain. Enables AI agents to query market data, check positions, retrieve order books, and potentially execute trades on Hyperliquid — supporting AI-driven DeFi trading research and automation.
LM Studio
GUI desktop application for browsing, downloading, and running local LLMs that optionally exposes an OpenAI-compatible REST API server for agent consumption.
Laravel Octane
Application server for Laravel that supercharges performance by keeping the application in memory between requests. Octane runs Laravel on Swoole or RoadRunner servers that boot the application once, then handle multiple requests in long-lived worker processes — eliminating PHP's traditional bootstrap-per-request overhead. Octane features: php artisan octane:start (replaces nginx/php-fpm), request concurrency via coroutines (Swoole), shared application state between requests, task workers for concurrent operations (Octane::concurrently()), flush() for clearing state between requests, and tables (shared memory across workers). 5-10x request throughput improvement over traditional PHP-FPM for agent API services.
LinkedIn MCP Server (via HAPI)
MCP server providing LinkedIn API tools — enabling AI agents to retrieve LinkedIn profile data and publish content. Built via the HAPI MCP framework. Enables professional networking agents to read profiles, post updates, and interact with LinkedIn's professional data platform.
MailerSend
Transactional email API with high deliverability, supporting single and bulk sends, dynamic templates, email verification, and inbound email parsing via REST and SMTP.
Matomo
Open-source web analytics platform — the privacy-respecting alternative to Google Analytics. Matomo tracks page views, events, conversions, funnels, heatmaps, session recordings, A/B testing, and ecommerce analytics. Self-hosted on your own server (PHP + MySQL) so data never leaves your infrastructure. GDPR-compliant by default with cookieless tracking options. Also available as Matomo Cloud (managed hosting) with a free 21-day trial.
Mianshiya MCP Server
Mianshiya (面试鸭) MCP server enabling AI agents to access China's popular developer interview question platform — fetching coding interview questions, retrieving algorithm problems, accessing system design questions, and integrating Mianshiya's curated interview content into agent-driven interview preparation and technical assessment workflows.
MyBatis
SQL-first Java persistence framework — maps SQL queries to Java objects with full control over SQL. Unlike JPA/Hibernate which generate SQL, MyBatis uses developer-written SQL: define SQL in XML mapper files or @Select/@Insert annotations, MyBatis handles parameter binding and result set mapping. Used extensively in enterprise Java (especially in organizations with complex legacy SQL or DBAs who write optimized SQL). Popular in Asian tech companies and systems requiring precise SQL control (financial systems, complex reports). MyBatis-Spring integration for Spring Boot auto-configuration.
Ngrok
Ngrok provides secure tunnels and an API gateway that expose local or private services to the internet with built-in traffic inspection, authentication, and routing.
OpenCage Geocoding API
Forward and reverse geocoding API built on OpenStreetMap and other open data sources, returning structured location data in JSON, XML, or GeoJSON across 40+ languages worldwide.
People Data Labs API
Enriches person and company records with professional data including employment history, education, skills, emails, and firmographics by matching against a database of 1.5 billion+ person profiles and 100 million+ company records.
Prism.js
Lightweight, extensible syntax highlighting library for the browser and Node.js. Prism uses regex-based token grammars for 300+ languages with a plugin system for line numbers, copy buttons, diff highlighting, and line highlighting. The classic choice for documentation sites, blogs, and web applications needing code display. Powers many popular documentation frameworks (Docusaurus, VuePress) and CMS systems.
Prometheus Pushgateway
HTTP gateway that accepts pushed metrics from short-lived jobs and exposes them for Prometheus scraping, bridging ephemeral workloads with pull-based monitoring.
PyMongo
The official MongoDB Python driver. PyMongo provides synchronous access to MongoDB — CRUD operations, aggregation pipelines, transactions, GridFS, and change streams. The foundation for most Python MongoDB applications. For async applications, Motor (async PyMongo wrapper) is the counterpart. Widely used for document-oriented data storage in Python agent backends.
QMT MCP — Quantitative Trading MCP
QMT MCP server enabling AI agents to interact with QMT (Quick Momentum Trading) — a popular quantitative trading platform in China — querying A-share stock data, historical prices, real-time market data, and integrating QMT's quantitative trading infrastructure into agent-driven algorithmic trading research and backtesting workflows for Chinese markets.