StampMitraStampMitra Developers

MCP Integration

StampMitra plans to ship a Model Context Protocol (MCP) server exposing Verification and e-Stamp operations as tools for AI agents. Each MCP tool's schema will be generated from the same structured API contract (src/data/api-products.ts) that drives this documentation, an OpenAPI spec, the Postman collection, and SDKs - one source of truth, many outputs.

Example future tool (illustrative, not yet published):

{
  "name": "verify_pan",
  "description": "Verify PAN",
  "inputSchema": {
    "type": "object",
    "properties": { "pan": { "type": "string" }, "name": { "type": "string" } },
    "required": ["pan"]
  }
}
No MCP server is published yet - this page documents the plan only.