Connect Cursor
Connect Piyaz in Cursor over the hosted MCP endpoint, or install the skills via a Team marketplace.
Piyaz is hosted at app.piyaz.ai. Cursor connects to the hosted MCP endpoint over HTTP and signs in with OAuth on the first tool call. No clone required.
There are two paths. The deeplink gives you the 9 MCP tools on any plan. A Team or Enterprise marketplace adds the workflow skills on top.
Open the install deeplink, then sign in on the first tool call:
cursor://anysphere.cursor-deeplink/mcp/install?name=piyaz&config=eyJ1cmwiOiJodHRwczovL2FwcC5waXlhei5haS9hcGkvbWNwIn0=The deeplink registers an MCP server pointing at https://app.piyaz.ai/api/mcp. Cursor runs OAuth on the first tool call.
Team Marketplaces is a Teams/Enterprise feature. In the dashboard, go to Settings → Plugins → Team Marketplaces → Add Marketplace → Import from Repo, then paste:
https://github.com/FrkAk/piyazThis installs the workflow skills alongside the MCP tools.
Listing in the public Cursor Marketplace requires submission and manual review. Search-and-install lands once Piyaz is published there.
Verify
Open a new Composer session (Cmd/Ctrl+I) and ask:
List my projects.Cursor returns your project list. An empty list is expected on a fresh account.
Self-host
Both install paths above point at the hosted app. To use your own server, start it and register a second entry in ~/.cursor/mcp.json, or %USERPROFILE%\.cursor\mcp.json on Windows. Use .cursor/mcp.json inside a project to scope the server to that project.
The deeplink writes the hosted piyaz entry into this same file, so add your own entry alongside it rather than replacing the file:
{
"mcpServers": {
"piyaz": { "url": "https://app.piyaz.ai/api/mcp" },
"piyaz-self-hosted": { "url": "http://localhost:3000/api/mcp" }
}
}Swap http://localhost:3000 for your own origin if you run Piyaz elsewhere, and serve it over HTTPS unless it is on localhost. Restart Cursor afterwards; it runs OAuth on the first tool call against the new server. If you installed through a Team or Enterprise marketplace, leave the mcp.json that ships with the plugin alone, since the next plugin update replaces it. For running the server itself, see the self-host guide.
What gets installed
- The 9 MCP tools that give your agent direct access to the project graph. See the MCP overview.
- On a Team or Enterprise marketplace, the
/piyazskill plus the workflow skills (brainstorm, decompose, decompose-feature, decompose-task, manage, onboarding, and review).
composer (end-to-end task orchestration) is Claude Code only for now. For that flow, use Claude Code.
Next Steps
- MCP Overview -- tool workflows and server instructions.
- Quickstart -- create your first project.
Last updated