This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Claude OAuth Proxy Server | |
Translates OpenAI-compatible requests to Claude Code OAuth requests | |
""" | |
from flask import Flask, request, jsonify, Response | |
import requests | |
import json | |
import time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Streamlit Interface for Serena MCP using MCPO Proxy | |
Uses MCPO to convert Serena MCP server to OpenAPI HTTP endpoints. | |
Downloads Serena directly from git repository | |
# streamlit run serena.py | |
""" | |
import streamlit as st |