Skip to content

Instantly share code, notes, and snippets.

View mvletter's full-sized avatar

mvletter

  • https://www.voys.co
  • Groningen
View GitHub Profile
@mvletter
mvletter / gist-api-patch.py
Created January 31, 2026 09:35
ollama-mcp-bridge patches for OpenAI-compatible /v1/chat/completions with MCP tool injection
# Patch for ollama-mcp-bridge api.py
# Add this endpoint BEFORE the catch-all proxy route (@app.api_route("/{path_name:path}"))
#
# Location: ~/.local/share/uv/tools/ollama-mcp-bridge/lib/python3.*/site-packages/ollama_mcp_bridge/api.py
@app.post(
"/v1/chat/completions",
summary="OpenAI-compatible chat completions with MCP tool injection",
description="Proxy to Ollama's /v1/chat/completions with MCP tools merged into the request.",
)