← All WebMCP sites

ashwingopalsamy.in

Media & Personalhttps://ashwingopalsamy.in/listed as of 2026-08-22
Builds the infrastructure behind global payments: Go services that parse and route ISO 8583 messages from card networks at the authorization ingress layer. Works remotely.
See Ora's auditWe loaded this site in a real browser and scored its tools. Score: 58/100 (C).

Tools

scan_images_c2paanswerimperative
Scan every <img> on the current page for C2PA Content Credentials (content provenance metadata) and return a per-image summary: whether a manifest is present, the claim generator (the tool that produced or edited the image), the title, and the signer name. Use this to find which images on a page carry provenance data. Note: provenance is decoded but NOT cryptographically verified.
Input schema
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "default": 25,
      "description": "Maximum number of images to fetch and scan (default 25, max 100)."
    }
  },
  "required": []
}
inspect_image_c2paanswerimperative
Fetch a single image (by CSS selector or URL) and return its fully decoded C2PA manifest store: every manifest's claim, assertions (e.g. c2pa.actions edit history, schema.org authorship), and the COSE signature details (algorithm and signing-certificate identity). Provide exactly one of `selector` or `url`. Note: the signature is decoded but NOT cryptographically verified.
Input schema
{
  "type": "object",
  "properties": {
    "selector": {
      "type": "string",
      "maxLength": 8192,
      "description": "CSS selector for an <img> element on the page."
    },
    "url": {
      "type": "string",
      "maxLength": 8192,
      "description": "Image URL (absolute, or relative to the current page) to fetch and inspect."
    }
  },
  "required": []
}
search_siteanswerimperative
Search the public site content manifest.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "query": {
      "type": "string",
      "description": "Search phrase"
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 25
    }
  },
  "required": [
    "query"
  ]
}
get_profileanswerimperative
Return the authoritative public profile summary.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {}
}
list_contentanswerimperative
List public content from the site manifest.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "kind": {
      "description": "Content kind such as note, craft, book, watch, article, tag, or all",
      "type": "string"
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 25
    }
  }
}
get_note_markdownanswerimperative
Return a published note's raw Markdown by allowlisted slug.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "slug": {
      "type": "string",
      "pattern": "^[a-z0-9][a-z0-9-]*$",
      "description": "Published note slug"
    }
  },
  "required": [
    "slug"
  ]
}
Listings are sourced from public community registries and shown as reported.