Packages
4946 resultspymoo
Multi-objective optimization framework for Python — provides state-of-the-art evolutionary algorithms (NSGA-II, NSGA-III, MOEAD, R-NSGA-II) with visualization and decision-making tools. pymoo features: Problem class for problem definition, minimize() as entry point, NSGA2/NSGA3 algorithms, Result object with res.X (solutions) res.F (objective values) res.G (constraint violations), Pareto front visualization, callback functions for tracking convergence, mixed-variable optimization (real, integer, binary, choice), gradient-based support, elementwise vs vectorized evaluation, and hypervolume/IGD performance indicators.
statsmodels
Python library for statistical modeling and econometrics that provides OLS regression, GLMs, logistic regression, time series models (ARIMA, VAR, SARIMAX), and a comprehensive suite of hypothesis tests with R-style model summaries.
urllib3
Thread-safe HTTP client library for Python — the foundational HTTP layer underneath requests. urllib3 features: PoolManager for connection pooling (reuse TCP connections), HTTPSConnectionPool for TLS connections, Retry() for configurable retry logic, response.read()/response.json() for body consumption, streaming with preload_content=False, multipart form upload, proxy support (ProxyManager), timeout tuples (connect, read), SNI support, client certificates, certificate verification, and response headers as HTTPHeaderDict. Lower-level than requests but with explicit connection pool management. Used directly when requests is too heavy or when building libraries.
Expo Router
File-system based routing for universal React Native and web apps. Like Next.js but for Expo — create app/index.tsx and it becomes the root route. Nested layouts, dynamic routes ([id].tsx), and route groups work like Next.js file conventions. Built on React Navigation under the hood but provides a Next.js-familiar developer experience. Enables universal apps that share routes between iOS, Android, and web.
Hugging Face Hub Python Client
Python client for the Hugging Face Hub REST API to download, upload, and manage models, datasets, and Spaces repositories with authentication and caching.
Korean Pharmaceutical Information MCP Server
MCP server for Korean pharmaceutical and drug information from HIRA (Health Insurance Review & Assessment Service). Enables AI agents to look up Korean drug ingredient and product data by HIRA component and product codes — supporting pharmaceutical research, clinical decision support, and Korean healthcare workflows.
Plaid API
Plaid REST API — financial data connectivity platform enabling agents to securely link bank accounts, retrieve transaction history, verify account balances, and initiate ACH transfers via standardized APIs across thousands of financial institutions.
Reddit Ads MCP Server
Community MCP server for managing Reddit Ads — enabling AI agents to manage Reddit advertising accounts, campaigns, ad groups, posts, and ads. Supports listing ad accounts, creating and modifying campaigns, managing ad creative, and accessing Reddit advertising analytics for marketing automation workflows.
SymPy
Symbolic mathematics library for Python — performs exact algebraic computation, calculus, and equation solving. SymPy features: Symbol declarations (x = symbols('x')), simplify(), expand(), factor(), solve() for equations, diff() derivatives, integrate() integrals, limit(), series() Taylor expansion, Matrix operations, ODE solving (dsolve), LaTeX output (latex()), code generation (lambdify(), ccode(), fcode()), number theory, combinatorics, and Diophantine equations. Fully Python-based CAS (Computer Algebra System). Used by agents for symbolic equation solving, formula derivation, mathematical proof verification, and code generation from symbolic expressions.
Twilio Voice API
Twilio Voice API enables programmatic inbound and outbound phone calls, interactive voice response (IVR) systems, call recording, transcription, and real-time call control via REST API and TwiML (XML instructions). Used to build anything from notification dialers to full contact center infrastructure.
xmltodict
Lightweight XML-to-dict converter for Python — parses XML into OrderedDict and back. xmltodict features: xmltodict.parse() converts XML string to nested dict, xmltodict.unparse() converts dict back to XML, streaming mode for large XML files (item_depth parameter), namespace support, force_list to always return lists, cdata_key for CDATA sections, attr_prefix (default '@') for XML attributes, encoding control, postprocessor callback for type conversion, and expat-based parsing (fast). Ideal for consuming XML APIs as if they were JSON — convert SOAP/RSS/Atom/config XML to Python dicts for agent processing without XPath complexity.
ACI.dev (Agent Computing Infrastructure)
ACI.dev (Agent Computing Infrastructure) is an open-source platform providing a unified API for 600+ tools that AI agents can use. Acts as a managed tool registry and execution layer — agents discover and call tools via ACI without managing each tool's auth, rate limits, and schemas individually.
Amazon Interactive Video Service (IVS) API
Amazon Interactive Video Service (IVS) REST API for managed live streaming with interactive capabilities. Enables AI agents to create and manage live channels, generate RTMPS ingest URLs, configure stream recordings, manage playback tokens, set up timed metadata for interactivity, and integrate low-latency live video into applications. IVS is built on Twitch's streaming technology.
Asana
Project management REST API providing programmatic access to tasks, projects, portfolios, goals, timelines, and team workspaces for automating work management workflows.
Better Chatbot
An open-source AI chatbot platform that unifies multiple LLM providers (OpenAI, Anthropic, Google, xAI, Ollama) in a single Next.js interface with MCP tool support, custom agents, visual workflow builder, and real-time voice.
CanCanCan
Authorization library for Ruby on Rails — defines user abilities (what actions users can perform on resources) in a central Ability class. CanCanCan: can :read, Agent (user can read agents), can :manage, Agent, user_id: user.id (user can manage their own agents), cannot :delete, Agent (overrides previous allow). Controller integration: authorize! :read, @agent raises CanCan::AccessDenied if unauthorized; load_and_authorize_resource macro auto-loads and authorizes resource. View helpers: can?(:edit, @agent) for conditional UI rendering. Successor to CanCan (which is unmaintained), community-maintained continuation.
DevPod
Open-source dev environment manager that works like Codespaces but provider-agnostic. DevPod creates reproducible development environments defined by devcontainer.json and runs them locally (Docker), remotely (any cloud VM/Kubernetes), or on any SSH target. CLI-first with VS Code, JetBrains, and web IDE integration. Loft Labs maintains DevPod as open-source.
Evernote MCP Server
MCP server enabling AI agents to interact with Evernote — reading and creating notes, searching notebooks, managing tags, accessing web clips and attachments, and integrating Evernote's personal knowledge management system into agent workflows.
ExoPlayer (Media3)
Android media playback library (now part of AndroidX Media3) — handles audio and video playback with support for progressive download, HLS, DASH, and SmoothStreaming. ExoPlayer/Media3 features: ExoPlayer instance with MediaItem.fromUri() for playback, PlayerView for built-in UI controls, MediaSession integration for background audio, track selection (quality, subtitle, audio language), adaptive bitrate streaming (HLS/DASH auto quality), DRM (Widevine, ClearKey), and offline download. Replaced Android's MediaPlayer for complex media requirements. Media3 unifies ExoPlayer, MediaSession, and UI components under androidx.media3 namespace. Used for agent video tutorials, voice recording playback, and media-rich agent applications.
G-Search MCP
An MCP server that performs Google searches using Playwright headless browser automation, supporting multiple parallel queries with CAPTCHA detection, user behavior simulation, and structured JSON results.