mcp-server-cloudflare (Scarmonit/mcp-server-cloudflare)
Scarmonit
- Workflow: Deploy to Cloudflare Workers
⚡ INSTANT FIX: Download and run
READY-TO-RUN-fix-oauth.ps1from this gist - it contains YOUR actual OAuth credentials and will fix the issue immediately!⏱️ IMPORTANT: OAuth codes expire in ~10 minutes. If the ready-to-run script fails, run
codex loginagain to get fresh credentials.
You're seeing ERR_CONNECTION_REFUSED on localhost:1455 after attempting codex login. This happens on Windows when port 1455 is blocked by NAT/Hyper-V excluded port ranges.
| #!/bin/bash | |
| # Claude Code Slash Commands - Automated Setup Script | |
| # Author: Automated Browser Agent | |
| # Contact: Scarmonit@gmail.com | |
| # Date: November 14, 2025 | |
| set -e | |
| echo "═══════════════════════════════════════════════════" | |
| echo "Claude Code Slash Commands - Setup Script" |
| <# | |
| .SYNOPSIS | |
| Complete OpenSSH + VS Code Remote Development Setup Automation | |
| .DESCRIPTION | |
| Automates the entire setup process for OpenSSH Server on Windows | |
| and prepares for VS Code Remote-SSH development. | |
| .NOTES | |
| Author: Automated Browser Agent | |
| Contact: Scarmonit@gmail.com | |
| Version: 1.0 |
System Status: MLflow 3.1.4 @ http://localhost:5000
Generated: November 10, 2025, 2 AM EST
Owner: Scarmonit@gmail.com
Orchestrator: https://gist.github.com/Scarmonit/472b1a3a6a5193b28dad7818b5b2a65a
| #!/usr/bin/env python3 | |
| """ | |
| MLflow Production Orchestrator - Complete ML Pipeline Automation | |
| Generated: November 10, 2025, 2 AM EST | |
| Server: http://localhost:5000 | |
| Owner: Scarmonit@gmail.com | |
| Purpose: Automated ML training, experiment tracking, and model registration | |
| """ |
System: Weaviate v1.34.0 @ http://localhost:8083
Created: November 10, 2025, 2:20 AM EST
Full Implementation: https://gist.github.com/Scarmonit/ac3975c8c532f893a6b51b996f1a808e
| #!/usr/bin/env python3 | |
| """ | |
| Weaviate Client - Enhanced Implementation with Vector Search | |
| Generated: November 10, 2025 | |
| Purpose: Production-ready client for Weaviate semantic search | |
| """ | |
| import weaviate | |
| import weaviate.classes as wvc | |
| from datetime import datetime |
| FROM python:3.11-slim | |
| # Set working directory | |
| WORKDIR /app | |
| # Install system dependencies including curl for healthchecks | |
| RUN apt-get update && apt-get install -y \ | |
| curl \ | |
| && rm -rf /var/lib/apt/lists/* |
| #!/usr/bin/env python3 | |
| """ | |
| Flask Application with Prometheus Metrics | |
| Generated: 2025-11-10 | |
| Purpose: Production-ready example for ECM, SEM Content Gen, and SEM Data Analysis services | |
| Deploy this on your services to expose /metrics endpoint for Prometheus | |
| """ | |
| from flask import Flask, jsonify, request |