awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

8 dépôts

Awesome GitHub RepositoriesProtocol-Compatible Backends

Services that implement standard protocols for tool discovery and request processing.

Distinct from API Compatibility: Distinct from API Compatibility: focuses on the construction of backends that adhere to specific tool-use protocols.

Explore 8 awesome GitHub repositories matching networking & communication · Protocol-Compatible Backends. Refine with filters or upvote what's useful.

Awesome Protocol-Compatible Backends GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • vercel/vercelAvatar de vercel

    vercel/vercel

    15,738Voir sur GitHub↗

    Vercel is a cloud platform for building, deploying, and scaling web applications. It provides a unified infrastructure that automates the build process by detecting project frameworks and distributing static and dynamic content through a global content delivery network. The platform executes application logic using serverless functions that scale automatically based on real-time traffic demand. The platform distinguishes itself through a centralized AI gateway that proxies requests to multiple model providers, enabling standardized authentication, observability, and cost tracking. It supports

    Enables the construction of services that adhere to standard protocols for tool discovery.

    TypeScriptclicloudcommand
    Voir sur GitHub↗15,738
  • scylladb/scyllaAvatar de scylladb

    scylladb/scylla

    15,609Voir sur GitHub↗

    Scylla is a distributed wide column NoSQL database designed as a high-performance data store. It functions as a Cassandra compatible database and a DynamoDB compatible store, implementing a shared-nothing architecture built on an asynchronous event-driven framework. The system emulates cloud-based APIs to support applications built for proprietary cloud protocols and implements the Cassandra Query Language for high-throughput workloads. This allows for the migration of cloud workloads to self-hosted environments while maintaining API compatibility. The project covers distributed data storage

    Emulates the DynamoDB API to allow applications to transition from cloud to self-hosted environments.

    C++
    Voir sur GitHub↗15,609
  • fauxpilot/fauxpilotAvatar de fauxpilot

    fauxpilot/fauxpilot

    14,732Voir sur GitHub↗

    Fauxpilot is a self-hosted AI coding assistant and local inference server. It functions as a proxy and API gateway that redirects traffic from IDE plugins to a local large language model, allowing for AI-assisted programming without external cloud dependencies. The project provides a specialized API emulation layer that mimics coding assistant protocols and a standardized OpenAI-compatible interface. This enables supported code editors to use local models for completions and suggestions by overriding default proxy URLs. The system includes capabilities for downloading and deploying local mod

    Emulates proprietary cloud service APIs to allow editor plugins to use a local server as a drop-in replacement.

    Python
    Voir sur GitHub↗14,732
  • floci-io/flociAvatar de floci-io

    floci-io/floci

    14,168Voir sur GitHub↗

    Floci is a local emulator for AWS services and cloud infrastructure designed for developing and testing applications without a live internet connection. It serves as a containerized cloud emulator and a serverless runtime emulator, allowing users to run high-fidelity replicas of cloud databases, queues, and compute services on a local machine. The project distinguishes itself by using real container images instead of simple mocks to ensure behavioral accuracy. It functions as a local API gateway simulator with proxy-based routing for REST and WebSocket APIs, and provides a serverless environm

    Implements standard cloud provider API protocols to ensure compatibility with official SDKs and CLI tools.

    Javaawsaws-emulationdevops
    Voir sur GitHub↗14,168
  • ollama/ollama-pythonAvatar de ollama

    ollama/ollama-python

    9,378Voir sur GitHub↗

    ollama-python is a Python client for interacting with large language models. It provides an interface for sending prompts to receive text and chat completions, as well as a dedicated client for generating numerical vector embeddings from text. The project includes a wrapper that emulates the OpenAI API, allowing applications built for that standard to interact with local models. It also provides a non-blocking asynchronous client for executing concurrent requests. The library covers the full model lifecycle, including the ability to pull, create, list, and delete models within a local enviro

    Maps internal method calls to external API standards to ensure compatibility with third-party provider formats.

    Pythonollamapython
    Voir sur GitHub↗9,378
  • beyondcode/laravel-websocketsAvatar de beyondcode

    beyondcode/laravel-websockets

    5,083Voir sur GitHub↗

    Il s'agit d'un serveur WebSocket auto-hébergé pour les applications Laravel conçu pour fournir une communication en temps réel et remplacer les services de messagerie gérés par des tiers. Il fournit une implémentation PHP côté serveur du standard WebSocket, permettant une communication full-duplex entre les clients et les serveurs. Le projet implémente un protocole compatible avec Pusher pour s'intégrer aux bibliothèques clientes frontend existantes. Il inclut un tableau de bord de débogage dédié pour surveiller les connexions actives, suivre le trafic réseau et analyser les performances du serveur en temps réel. Le système prend en charge la diffusion d'événements Laravel et la communication d'application en temps réel. Il utilise des contrôleurs WebSocket personnalisés pour définir la logique de gestion des événements de connexion et des messages.

    Implements the Pusher API specification to ensure compatibility with existing frontend client libraries.

    PHPhacktoberfestlaravellaravel-echo
    Voir sur GitHub↗5,083
  • connectrpc/connect-goAvatar de connectrpc

    connectrpc/connect-go

    3,963Voir sur GitHub↗

    Connect-go est une bibliothèque pour construire des services RPC (Remote Procedure Call) typés, compatibles avec gRPC et HTTP. Elle fournit une implémentation Go de Protocol Buffers pour l'échange de données structurées, permettant la création de serveurs RPC multi-protocoles et de clients typés générés. Le framework se distingue par son support de protocoles polyglottes, permettant à un seul gestionnaire de serveur de servir des requêtes utilisant plusieurs protocoles simultanément via HTTP. Cela inclut la possibilité de basculer entre différents protocoles de transport pour le même service et l'utilisation d'une négociation de contenu enfichable pour choisir entre l'encodage binaire et JSON. Le projet couvre un large éventail de capacités d'intégration API, incluant le streaming de messages unaire et bidirectionnel, le middleware réseau pour l'interception de requêtes et la gestion structurée des erreurs. Il inclut également des utilitaires opérationnels pour le reporting de santé des services, la compression de charge utile et le recyclage des tampons mémoire pour réduire la surcharge du garbage collector.

    Builds handlers and clients that maintain wire-compatibility across various communication protocols.

    Go
    Voir sur GitHub↗3,963
  • jrallison/go-workersAvatar de jrallison

    jrallison/go-workers

    1,383Voir sur GitHub↗

    Go-workers is a background job processor for Go applications that coordinates asynchronous task execution using Redis queues. It implements the Sidekiq-compatible wire protocol and payload structures, allowing interoperability with existing background processing ecosystems and clients. The system manages task distribution through atomic list operations on a shared data store to guarantee reliable message delivery and prevent lost tasks during abrupt worker failures. It features configurable concurrency limits to control throughput per queue by dispatching incoming tasks across bounded synchr

    Parses and generates JSON payload structures matching established ecosystem conventions to allow interoperability with existing background processing clients.

    Go
    Voir sur GitHub↗1,383
  1. Home
  2. Networking & Communication
  3. API and Integration Frameworks
  4. API Management and Integration
  5. API Compatibility
  6. Protocol-Compatible Backends

Explorer les sous-tags

  • Cloud API EmulatorsBackend implementations that emulate proprietary cloud service APIs for drop-in replacement. **Distinct from Protocol-Compatible Backends:** Distinct from general Protocol-Compatible Backends: specifically emulates cloud-provider APIs like DynamoDB rather than open standards.
  • Wire-Compatible HandlersHandlers designed to be wire-compatible with multiple network communication protocols. **Distinct from Protocol-Compatible Backends:** Focuses specifically on wire-level compatibility across multiple protocols rather than just standard tool discovery.