Connect via MCP
Connect a remote MCP client to Certyn with Auth0/OIDC sign-in and tenant-wide verification tools.
Certyn exposes a remote MCP server over Streamable HTTP so external MCP clients can connect directly to your Certyn workspace.
Server URL
For Certyn Cloud, the MCP endpoint is:
https://api.certyn.io/api/mcp
The public manifest is available at:
https://certyn.io/server.json
Authentication
Certyn MCP uses your existing Certyn user login through Auth0/OIDC.
- Use a normal user sign-in flow when the MCP client prompts for authentication.
- MCP v1 does not support API keys.
- MCP v1 does not support demo tokens.
When an unauthenticated client hits the MCP endpoint, Certyn returns the OAuth protected-resource metadata needed for authorization server discovery.
Capability model
MCP v1 is tenant-wide and tool-only.
- One MCP connection can access any project or environment your user can already access.
- Project tools accept
projectIdOrSlugwhen context matters. - MCP prompts and resources are not exposed in v1.
- Certyn MCP exposes direct project-record tools, not a recursive assistant chat tool.
Supported tools
list_projectslist_environmentsget_project_wikiupdate_wikilist_test_casesget_test_caselist_ticketsget_ticketcreate_test_casecreate_test_cases_batchupdate_test_caselist_conversationsget_conversation
See MCP Tool Catalog for tool arguments and response shapes.
Typical setup flow
- Add the Certyn MCP server in your client using
https://api.certyn.io/api/mcporhttps://certyn.io/server.json. - Start the connection and complete the Auth0/OIDC login flow with your Certyn account.
- Call
list_projectsandlist_environmentsto discover accessible workspace context. - Read current project state with
get_project_wiki,list_test_cases,get_test_case,list_tickets, andget_ticket. - After explicit confirmation, update project records with
update_wiki,create_test_case,create_test_cases_batch, orupdate_test_case.
Notes
- Authorization and access remain tenant-scoped and permission-scoped exactly like the Certyn dashboard.
- Conversation history tools only return tenant-owned conversations.
- For direct tool details, examples, and response payloads, use the MCP Tool Catalog.