I

identik.me

Identik — Argentine digital-signature and e-signature infrastructure provider. WebMCP tools let an agent browse the company overview, products, industry solutions, the Argentine digital-signature legal framework, and blog, and submit a contact/demo inquiry.

6read
1action
https://identik.me/

live · Productivity & Work · JSON · API for agents

Tools 7 tools

get_company_inforead

Returns Identik company overview: name, description, location, products, certifications, technology partner, and integration options.

View tool JSON
{
  "name": "get_company_info",
  "kind": "read",
  "impl": "imperative",
  "description": "Returns Identik company overview: name, description, location, products, certifications, technology partner, and integration options.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
list_productsread

Returns array of all 7 Identik products with id, name, short description, URL, and key features. Products: Firma Online (self-service portal, currently pre-launch), Firma Digital, Firma Electrónica, Verificación de Identidad, Wallet Digital, Archivo Digital, Notificaciones Electrónicas Certificadas.

View tool JSON
{
  "name": "list_products",
  "kind": "read",
  "impl": "imperative",
  "description": "Returns array of all 7 Identik products with id, name, short description, URL, and key features. Products: Firma Online (self-service portal, currently pre-launch), Firma Digital, Firma Electrónica, Verificación de Identidad, Wallet Digital, Archivo Digital, Notificaciones Electrónicas Certificadas.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
get_product_detailsread

Returns full details of a specific Identik product including description, features, use cases, Argentine legal basis, and technology info.

View tool JSON
{
  "name": "get_product_details",
  "kind": "read",
  "impl": "imperative",
  "description": "Returns full details of a specific Identik product including description, features, use cases, Argentine legal basis, and technology info.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "product_id": {
        "type": "string",
        "enum": [
          "firma-online",
          "firma-digital",
          "firma-electronica",
          "verificacion-identidad",
          "wallet-digital",
          "archivo-digital",
          "notificaciones"
        ],
        "description": "The product identifier"
      }
    },
    "required": [
      "product_id"
    ]
  },
  "page": "/"
}
list_industriesread

Returns the 6 industry solutions offered by Identik with typical workflows: Banca, Salud, Legal, Inmobiliario, RRHH, Gobierno.

View tool JSON
{
  "name": "list_industries",
  "kind": "read",
  "impl": "imperative",
  "description": "Returns the 6 industry solutions offered by Identik with typical workflows: Banca, Salud, Legal, Inmobiliario, RRHH, Gobierno.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
get_legal_frameworkread

Returns Argentine legal framework for digital signatures: Ley 25.506 articles (2, 5, 7, 10, 12), Código Civil y Comercial (Art. 286, 319), jurisprudencia, and IFDRA infrastructure.

View tool JSON
{
  "name": "get_legal_framework",
  "kind": "read",
  "impl": "imperative",
  "description": "Returns Argentine legal framework for digital signatures: Ley 25.506 articles (2, 5, 7, 10, 12), Código Civil y Comercial (Art. 286, 319), jurisprudencia, and IFDRA infrastructure.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
get_blog_articlesread

Returns list of 8 technical blog articles about digital signature infrastructure, legal framework, compliance, certified notifications, digital archiving, and end-to-end signing/verification under Ley 25.506.

View tool JSON
{
  "name": "get_blog_articles",
  "kind": "read",
  "impl": "imperative",
  "description": "Returns list of 8 technical blog articles about digital signature infrastructure, legal framework, compliance, certified notifications, digital archiving, and end-to-end signing/verification under Ley 25.506.",
  "inputSchema": {
    "type": "object",
    "properties": {}
  },
  "page": "/"
}
contact_companyaction

Submits a contact inquiry to Identik to request a demo or ask commercial/technical questions. Returns instructions to complete the form at /contacto/ (an agent can fill it via its declarative WebMCP form tool). Ask the user to confirm before calling.

View tool JSON
{
  "name": "contact_company",
  "kind": "action",
  "impl": "imperative",
  "description": "Submits a contact inquiry to Identik to request a demo or ask commercial/technical questions. Returns instructions to complete the form at /contacto/ (an agent can fill it via its declarative WebMCP form tool). Ask the user to confirm before calling.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "description": "Full name of the person contacting"
      },
      "email": {
        "type": "string",
        "description": "Corporate email address"
      },
      "company": {
        "type": "string",
        "description": "Company name"
      },
      "phone": {
        "type": "string",
        "description": "Phone number (optional)"
      },
      "tipo_consulta": {
        "type": "string",
        "enum": [
          "Solicitar Demo",
          "Consulta Comercial",
          "Consulta Técnica / API",
          "Partnership"
        ],
        "description": "Type of inquiry (optional, defaults to Solicitar Demo)"
      },
      "mensaje": {
        "type": "string",
        "description": "Message or description of the project (optional)"
      }
    },
    "required": [
      "name",
      "email",
      "company"
    ]
  },
  "page": "/"
}