Connect Claude, Cursor, or any MCP client to YIN-AI CERTIFICATION — on your computer or your phone — so your AI assistant can issue and check signed certificates without leaving the chat.
About five minutes · no coding required
The Model Context Protocol is an open standard that lets an AI assistant use an outside service directly — you add our server once, and from then on your assistant can call it on your behalf.
Two of the three tools need a key. It is free, takes about thirty seconds, and needs no credit card.
Enter your email on the home page.
Open the verification link we email you. Your key is shown once on that page — copy it somewhere safe before closing the tab.
ync_. Treat it like a password. If you lose it, sign up again or contact us — we cannot show it to you a second time.The quickest way, if you have Claude Desktop installed:
That opens Claude Desktop and adds the server in one step. Paste your API key when it asks, and you are done.
claude_desktop_config.json opens.mcpServers section, add just the "yin-ai-certification" part inside it.your-ync-api-key-here with the key from step 1.{
"mcpServers": {
"yin-ai-certification": {
"type": "url",
"url": "https://certification.yintechnologies.com/mcp",
"headers": {
"Authorization": "Bearer your-ync-api-key-here"
}
}
}
}
You do not set this up on the phone itself. Connectors belong to your Claude account, so you add ours once in a web browser and it then appears in the Claude app on every device you are signed in to.
YIN-AI CERTIFICATION and paste this address:https://certification.yintechnologies.com/mcpyin-ai-certification and use this address:https://certification.yintechnologies.com/mcpAuthorization with the value Bearer followed by your key.Every MCP client asks for the same three things. Wherever your app keeps its MCP or connector settings, give it:
https://certification.yintechnologies.com/mcpAuthorization whose value is the word Bearer, a space, then your API key.If your app wants a config file instead of a form, this is the block nearly all of them accept:
{
"mcpServers": {
"yin-ai-certification": {
"type": "url",
"url": "https://certification.yintechnologies.com/mcp",
"headers": {
"Authorization": "Bearer your-ync-api-key-here"
}
}
}
}
servers instead of mcpServers, or serverUrl instead of url. The address and the Authorization header never change. Restart the app afterwards; MCP settings are read at startup.Once connected, just ask in plain language — your assistant picks the right tool. The examples show what it sends behind the scenes.
Issues a signed certificate for a decision your AI made. Needs your API key.
Say: “Certify this loan decision.”
{
"query": "Should we approve loan application #4471?",
"answer": "Approve, with manual review of the collateral valuation.",
"context": { "certification_profile": "regulated" }
}
Checks a certificate's signatures on your own machine. No API key, no network call.
Say: “Verify this certificate.”
{
"certificate": { "...paste the certificate JSON here..." }
}
Fetches the exact field list for a module's certificate. No API key needed.
Say: “Show me the vision certificate schema.”
{
"module": "m2_vision"
}
Our server is a standard remote MCP server, so it works in any client that speaks MCP. These are the ones people ask about most, and how each one connects:
claude mcp add --transport http yin-ai-certification https://certification.yintechnologies.com/mcp --header "Authorization: Bearer your-ync-api-key-here"https://certification.yintechnologies.com/mcp, Authorization: Bearer header. Nothing to install.Ask your assistant: “What YIN certification tools do you have?” It should list all three by name. If it lists none, restart the app — configuration is only read at startup.
Still stuck? Email ilyesmazari@yintechnologies.com.