initial commit

This commit is contained in:
2026-07-14 10:49:14 +02:00
commit 9fef20ad53
16 changed files with 588 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
version: 1
mcp_servers:
filesystem:
transport: sse
url: http://mcp-filesystem:8010/sse
gitea:
transport: sse
url: http://mcp-gitea:8000/sse
k8s:
transport: sse
url: http://mcp-k8s:8012/sse
media:
transport: sse
url: http://mcp-media:8013/sse
routing:
default_servers:
- filesystem
- gitea
- k8s
- media

View File

@@ -0,0 +1,7 @@
apiVersion: v1
clusters: []
contexts: []
current-context: ""
kind: Config
preferences: {}
users: []

View File

@@ -0,0 +1,12 @@
model_list:
- model_name: ollama-default
litellm_params:
model: ollama/${OLLAMA_DEFAULT_MODEL}
api_base: http://ollama:11434
litellm_settings:
set_verbose: false
drop_params: true
general_settings:
master_key: ${LITELLM_MASTER_KEY}

20
config/mcpo/mcpo.json Normal file
View File

@@ -0,0 +1,20 @@
{
"mcpServers": {
"filesystem": {
"transport": "sse",
"url": "http://mcp-filesystem:8010/sse"
},
"gitea": {
"transport": "sse",
"url": "http://mcp-gitea:8000/sse"
},
"k8s": {
"transport": "sse",
"url": "http://mcp-k8s:8012/sse"
},
"media": {
"transport": "sse",
"url": "http://mcp-media:8013/sse"
}
}
}