quasar-mcp-server

The quasar-mcp-server is a server built with Go language that supports a microservices architecture using the Quasar framework. Developers can efficiently build applications and manage data through APIs. It is particularly useful for real-time data processing and building automated workflows, offering a range of features that enhance development productivity.

GitHub Stars

0

User Rating

Not Rated

Favorites

0

Views

23

Forks

0

Issues

0

README
quasar-mcp-server
  • quasar MCP server
  • Run code written in OpenQASM format
Examples
Running a Bell State Circuit with OpenQASM

GitHub Copilot

Deployment and Configuration
  1. Deploy quasar to Cloud Run.
  2. Deploy quasar-mcp-server to Cloud Run.
  3. Configure settings.json.
make build deploy
{
    "mcp": {
        "servers": {
            "quasar": {
                "type": "http",
                "url": "https://${YOUR_CLOUD_RUN_SERVICE_URL}.run.app/mcp",
            }
        }
    }
}
Invoke an Authenticated Cloud Run Service from localhost
make proxy
{
    "mcp": {
        "servers": {
            "quasar": {
                "type": "http",
                "url": "http://127.0.0.1:3000/mcp",
            }
        }
    }
}