Skip to content

Instantly share code, notes, and snippets.

@unixsysdev
unixsysdev / proxy.py
Last active July 25, 2025 18:04
Guess what ! What ? Code Proxy - needs refinement
#!/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
@unixsysdev
unixsysdev / serena.py
Created July 23, 2025 16:32
Serena MCP Interface via MCPO is a Streamlit web app that bridges AI models to Serena's powerful coding tools by converting the complex MCP (Model Context Protocol) into simple HTTP calls, letting you have natural conversations with an AI assistant that can actually read, write, and analyze code in real projects.
#!/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