An open API service indexing awesome lists of open source software.

https://github.com/projectsaturnstudios/superconductor-mcp-streamable-transport

StreamableHTTP transport protocol for the Superconductor MCP framework.
https://github.com/projectsaturnstudios/superconductor-mcp-streamable-transport

Last synced: 6 months ago
JSON representation

StreamableHTTP transport protocol for the Superconductor MCP framework.

Awesome Lists containing this project

README

          

1. To spin up a client:
```php
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)

```