Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Klavis Strata MCP API Key
# Get your API key from: https://strata.klavis.ai/
KLAVIS_STRATA_API_KEY=your-api-key-here
27 changes: 27 additions & 0 deletions config/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,33 @@

],

/*
|--------------------------------------------------------------------------
| MCP Transports
|--------------------------------------------------------------------------
|
| Model Context Protocol (MCP) transports configuration. Define your
| MCP servers and their connection settings here. Supported transport
| types include 'http' for HTTP/HTTPS connections.
|
*/

'mcp' => [
'transports' => [
'klavis-strata' => [
'type' => 'http',
'url' => 'https://strata.klavis.ai/mcp/?strata_id=3befb976-1fc9-4ff0-9e87-a173b12657c6',
'options' => [
'timeout' => 30,
'verify' => true,
'headers' => [
'Authorization' => 'Bearer ' . env('KLAVIS_STRATA_API_KEY'),
],
],
],
],
],

/*
|--------------------------------------------------------------------------
| Response Transformer
Expand Down
Loading