Packages

4685 results

Context Space

Developer Tools

A production-ready integration platform that gives AI agents secure access to 14+ real-world services (GitHub, Slack, Airtable, HubSpot, Notion, Spotify, Stripe, etc.) through a unified MCP server and REST API. Handles OAuth flows and credential management via HashiCorp Vault so agents don't need to deal with auth complexity directly.

MCP Free tier mcp oauth integrations
58

Firebase Cloud Functions

Cloud Infrastructure

Google Firebase's serverless compute platform for running backend code in response to Firebase events (Firestore writes, Auth triggers, Storage uploads) or direct HTTP requests. Functions are deployed to Google Cloud and scale automatically.

Free tier serverless firebase google-cloud
58

Gitea REST API

Developer Tools

Gitea is a self-hosted Git service with a comprehensive REST API covering repositories, issues, pull requests, releases, CI/CD (Gitea Actions), users, and organizations — a GitHub-like API for on-premises or private cloud deployments.

Free tier gitea git self-hosted
58

Google Cloud Functions API

Other

Fully managed serverless compute platform that lets you run single-purpose functions in response to HTTP requests, Cloud Pub/Sub messages, Cloud Storage events, Firestore changes, and other Google Cloud events. 1st gen and 2nd gen (Cloud Run-based) variants with up to 60-minute timeouts and 16 GB RAM on 2nd gen.

Free tier serverless faas gcp
58

Label Studio

AI & Machine Learning

Open-source data annotation platform with a REST API that enables agents to create and manage annotation projects, import raw data, retrieve completed annotations, and integrate human labeling into ML pipelines — supporting text, images, audio, video, and time series.

Free tier label-studio annotation data-labeling
58

LangChain Community Integrations

AI & Machine Learning

Provides 100+ community-maintained integrations for LangChain including vector stores, document loaders, LLM providers, chat models, embedding models, tools, and retrievers — extending langchain-core with concrete implementations.

Free tier langchain integrations vector-stores
58

Meltano

Other

Meltano is an open-source Singer-based ELT framework and CLI that manages tap/target plugin lifecycles, state for incremental extraction, and pipeline configuration via a meltano.yml project file, with access to 600+ connectors through MeltanoHub.

Free tier elt singer open-source
58

Microsoft Entra ID (Azure AD)

Security

Microsoft's cloud identity platform that provides OAuth2/OIDC SSO, MFA, conditional access, and user/group management for enterprise Microsoft 365 and custom applications.

Free tier azure microsoft oauth2
58

Pomerium

Security

Identity-aware access proxy implementing zero-trust network access (ZTNA). Pomerium sits in front of internal applications and services, authenticating every request via OIDC/OAuth2 and enforcing policy-based authorization without a VPN. Replaces VPN + firewall rules with identity-verified, context-aware access control. REST API and policy-as-code (YAML/Rego) for programmatic access route management. Pomerium Zero (cloud-managed) or self-hosted.

Free tier zero-trust access-proxy identity
58

Satispay Italy Mobile Payment API

Other

Satispay Italy mobile payment REST API for merchants to accept direct bank-linked mobile payments from Italy's leading alternative payment app with 3+ million users by bypassing card networks through direct bank account linking for e-commerce, in-store, and subscription payment at lower cost than card acceptance. Enables AI agents to manage Satispay payment request for Italy mobile payment checkout automation, handle QR code generation for Italy in-store merchant payment automation, access online payment link for Italy e-commerce checkout automation, retrieve payment status and confirmation for Italy transaction automation, manage refund processing for Italy order management automation, handle callback notification for Italy payment webhook automation, access transaction reporting for Italy payment analytics automation, retrieve merchant settlement for Italy reconciliation automation, manage subscription and recurring for Italy billing automation, and integrate Satispay with Italian e-commerce, retail, food delivery, and parking platforms for end-to-end Italy payment automation.

Free tier satispay Italy-payments Italian-mobile-payment
58

Semgrep Cloud Platform API

Security

The Semgrep Cloud Platform REST API provides programmatic access to the Semgrep AppSec Platform — the SaaS layer above the open-source Semgrep CLI engine. The API enables querying SAST findings (Semgrep Code), dependency vulnerability alerts (Semgrep Supply Chain), secrets detection results (Semgrep Secrets), and managing deployments, projects, and rule policies. Findings are the primary entity: each finding has a rule ID, severity, CWE, location (file + line), triage status (open/ignored/fixed/reviewing), and for supply chain findings, the CVE, package, and fix version. Agents use this API to build automated triage workflows (bulk-close false positives by rule or file path), feed findings into ticketing systems, generate security posture metrics, and enforce policy gates in CI/CD. Note: scan triggering is NOT available via the API — scans run through the Semgrep CLI in CI/CD pipelines; the API is purely for reading results and managing finding state.

Free tier semgrep sast static-analysis
58

Storybook

Developer Tools

UI component development environment and documentation tool. Lets developers build, test, and document components in isolation. Chromatic (the commercial product from Storybook maintainers) adds visual regression testing and a hosted component review platform with a REST API.

Free tier storybook ui-components documentation
58

Syncro MSP Platform API

Developer Tools

Syncro REST API for managed service provider (MSP) combined RMM and PSA platform. Enables AI agents to manage IT support tickets and billing, access device health and inventory data, trigger remote scripts and maintenance tasks, manage customer accounts, handle invoicing and contract management, retrieve SLA metrics, and integrate MSP operations with accounting and CRM systems.

Free tier syncro msp rmm
58

Tornado

Developer Tools

Python async web framework and networking library with native WebSocket support, a non-blocking HTTP client, and an IOLoop that now wraps asyncio — well-suited for long-lived connection patterns.

Free tier python async web-framework
58

Yelp Fusion API

Other

Provides access to Yelp's database of local businesses including search by location/category/keyword, business details (hours, photos, attributes), user reviews, and autocomplete. Covers 50+ million businesses across 35+ countries.

Free tier yelp local-business reviews
58

aiokafka

Developer Tools

Async Kafka client for Python using asyncio — native async/await Kafka producer and consumer. aiokafka features: AIOKafkaProducer for async message publishing (await producer.send_and_wait()), AIOKafkaConsumer for async consumption (async for msg in consumer), SSL/SASL auth, consumer groups, manual offset commit (await consumer.commit()), seek(), transaction support, batch sending, compression, and asyncio event loop integration. Drop-in async replacement for kafka-python's sync API. Part of aio-libs ecosystem (same as aiohttp, aiomysql). Required for async web frameworks (FastAPI, aiohttp) that cannot block on Kafka I/O.

Free tier python aiokafka kafka
58

django-allauth

Developer Tools

Comprehensive Django authentication — handles local accounts (email/password), social OAuth (Google, GitHub, Facebook, 70+ providers), email verification, and headless API mode. django-allauth features: ACCOUNT_EMAIL_VERIFICATION ('mandatory'/'optional'/'none'), local registration with email confirmation, social auth via SocialApp model (stores OAuth app credentials), custom signup form, password change/reset flows, username/email login flexibility, headless mode for SPA/mobile (API JSON responses), email template customization, and multi-social account linking. Allauth headless provides /api/v1/auth/login, /signup, /social/login endpoints for agent SPA frontends. Replaces writing auth views from scratch.

Free tier python django authentication
58

kafka-python

Developer Tools

Python client for Apache Kafka — produce and consume Kafka messages with pure Python implementation. kafka-python features: KafkaProducer for publishing (send(), flush(), batch_size, linger_ms, compression_type), KafkaConsumer for subscribing (subscribe(), assign(), commit(), auto_offset_reset, group_id), AdminClient for topic management (create_topics, list_topics), message serialization (key_serializer/value_serializer), SSL/SASL authentication, consumer group rebalancing, offset management (seek, committed), and partition assignment. Pure Python Kafka client without librdkafka dependency. Alternative: confluent-kafka-python (uses librdkafka, faster but C dependency).

Free tier python kafka kafka-python
58

markdownify-mcp

Content Management

MCP server that converts various file types (PDFs, images, audio, DOCX, XLSX, PPTX) and web content (YouTube transcripts, web pages, Bing search results) to Markdown format for AI consumption.

MCP Priority Free tier mcp markdown pdf
58

AWS Glue API

Other

AWS Glue REST API — serverless ETL and data catalog service enabling agents to create and run ETL jobs that extract, transform, and load data between AWS data stores, manage the data catalog (databases, tables, partitions), and trigger crawlers that auto-discover schema.

Free tier aws glue etl
58
6961
Packages Evaluated
25669
Need Evaluation
173
Need Re-evaluation
Community Powered