superconductor / streamable-http-transport
Streamable HTTP transport protocol for the Superconductor MCP framework.
20241105.5.0
2025-09-04 19:49 UTC
Requires
- php: ^8.2
- lorisleiva/laravel-actions: ^2.6
- projectsaturnstudios/laravel-design-patterns: ^0.1.0
- projectsaturnstudios/quickuuid: ^0.2.0
- superconductor/mcp: ^20241105.5.0
Requires (Dev)
- illuminate/container: ^12.0
- illuminate/events: ^12.24
- illuminate/support: ^12.24
- pestphp/pest: ^3.8
- react/event-loop: ^1.5
- react/stream: ^1.4
This package is auto-updated.
Last update: 2025-09-04 19:49:56 UTC
README
- To spin up a client:
use Superconductor\Transports\StreamableHttp\Support\Facades\StreamableHttp; use Superconductor\Transports\StreamableHttp\DTO\Servers\StreamableServerConfig; // Define the command to run the MCP server $mcp_server_config = [ "url" => "https://api.githubcopilot.com/mcp/", "headers" => [ "Authorization" => "auth_token" ], ]; $mcp_server = new StreamableServerConfig(...$mcp_server_config) // Start the client by passing in the command configuration $client = StreamableHttp::client($mcp_server)