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 henry@mcphub.com.
The quasar MCP Server is designed to run code written in OpenQASM format, facilitating quantum computing tasks.
quasar-mcp-server
- quasar MCP Server
- Run code written in OpenQASM format
Examples
Running a Bell State Circuit with OpenQASM
Factoring with Shor's Algorithm
Deployment and Configuration
- Deploy quasar to Cloud Run.
- Deploy quasar-mcp-server to Cloud Run.
- 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",
}
}
}
}