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.
- Host: GitHub
- URL: https://github.com/projectsaturnstudios/superconductor-mcp-streamable-transport
- Owner: projectsaturnstudios
- License: mit
- Created: 2025-06-08T06:49:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-16T04:12:00.000Z (10 months ago)
- Last Synced: 2025-09-16T06:23:29.006Z (10 months ago)
- Language: PHP
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```