itsubaki/quasar-mcp-server
If you are the rightful owner of quasar-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The quasar MCP Server is designed to run code written in OpenQASM format, facilitating quantum computing tasks.
quasar-mcp-server
- An MCP server that runs code written in OpenQASM 3.0 format
Examples
Running a Bell State Circuit with OpenQASM 3.0

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