Aynstyn is an AI-powered knowledge assessment and exam preparation platform. This page provides all entry points for developers and AI agents to integrate with Aynstyn's capabilities.
| Resource | URL | Format |
|---|---|---|
| MCP Server | app.aynstyn.com/mcp | Streamable HTTP / JSON-RPC 2.0 |
| OpenAPI Spec (JSON) | aynstyn.com/openapi.json | OpenAPI 3.1 |
| OpenAPI Spec (YAML) | aynstyn.com/openapi.yaml | OpenAPI 3.1 |
| LLM context (short) | aynstyn.com/llms.txt | Markdown |
| LLM context (full) | aynstyn.com/llms-full.txt | Markdown |
| Agent Card (A2A) | /.well-known/agent-card.json | JSON |
| MCP Discovery | /.well-known/mcp | JSON |
| Full Documentation | aynstyn.com/docs.html | HTML |
Aynstyn exposes its knowledge assessment engine via a Model Context Protocol (MCP) server, allowing any MCP-compatible AI client to assess user knowledge directly.
https://app.aynstyn.com/mcp
Streamable HTTP, stateless, JSON-RPC 2.0.
assess_knowledgeAssess a user's subject understanding and return structured feedback.
{
"subject": "Quantum Computing", // required, max 200 chars
"input": "My explanation..." // required, 10–5000 chars
}
Returns: score, clarityScore, depthScore, coveredTopics, missingTopics, topicCoverage, feedback
Standard REST endpoints for assessments, user history, credits, interviews, and learning goals. See the full spec:
OAuth 2.0 and Firebase Bearer tokens are supported.
| Endpoint | URL |
|---|---|
| Authorization | https://app.aynstyn.com/api/oauth/authorize |
| Token | https://app.aynstyn.com/api/oauth/token |
Available scopes: profile:read, assessments:write, credits:read
credits:read if possible.profile:read scope before accessing user-specific data.CAT, UPSC, GRE, GATE, TOEFL, IELTS, NEET, JEE, SSC, IBPS, CLAT, NDA, SAT, GMAT, and all professional/subject domains.
Home · Full Docs · llms.txt · llms-full.txt · OpenAPI