← WebMCP Directory

Tool tree

popsmedia.ro

Productivity & Business
https://popsmedia.ro/
Video production in Brașov, Romania, covering corporate interviews, podcasts, architecture, real estate, and film.
Explore capabilities

Tools verified

get_company_infoAnswer

Read-only. Returns public company, contact, service and URL information for POPSMEDIA.

View tool JSON
{
  "name": "get_company_info",
  "kind": "answer",
  "impl": "imperative",
  "description": "Read-only. Returns public company, contact, service and URL information for POPSMEDIA.",
  "inputSchema": {
    "type": "object",
    "properties": {},
    "additionalProperties": false
  }
}
get_service_detailsAnswer

Read-only. Returns complete public details for an exact POPSMEDIA service id, slug or name.

View tool JSON
{
  "name": "get_service_details",
  "kind": "answer",
  "impl": "imperative",
  "description": "Read-only. Returns complete public details for an exact POPSMEDIA service id, slug or name.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "service": {
        "type": "string",
        "description": "Exact service id, Romanian slug, English slug, Romanian name or English name."
      }
    },
    "required": [
      "service"
    ],
    "additionalProperties": false
  }
}
list_faqsAnswer

Read-only. Lists public POPSMEDIA frequently asked questions and answers in Romanian and English, optionally filtered by text query or language.

View tool JSON
{
  "name": "list_faqs",
  "kind": "answer",
  "impl": "imperative",
  "description": "Read-only. Lists public POPSMEDIA frequently asked questions and answers in Romanian and English, optionally filtered by text query or language.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Optional text query matched against FAQ questions and answers."
      },
      "lang": {
        "type": "string",
        "enum": [
          "ro",
          "en"
        ],
        "description": "Optional language filter for a simplified localized response."
      }
    },
    "additionalProperties": false
  }
}
list_portfolio_projectsAnswer

Read-only. Lists public POPSMEDIA portfolio projects using the site's published portfolio data.

View tool JSON
{
  "name": "list_portfolio_projects",
  "kind": "answer",
  "impl": "imperative",
  "description": "Read-only. Lists public POPSMEDIA portfolio projects using the site's published portfolio data.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "category": {
        "type": "string",
        "description": "Optional category slug or category name."
      },
      "query": {
        "type": "string",
        "description": "Optional text query matched against titles, descriptions and categories."
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 50,
        "description": "Optional maximum number of projects to return."
      }
    },
    "additionalProperties": false
  }
}
list_servicesAnswer

Read-only. Lists the public services offered by POPSMEDIA, optionally filtered by a text query.

View tool JSON
{
  "name": "list_services",
  "kind": "answer",
  "impl": "imperative",
  "description": "Read-only. Lists the public services offered by POPSMEDIA, optionally filtered by a text query.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Optional text query matched against service names, descriptions, features and deliverables."
      }
    },
    "additionalProperties": false
  }
}
start_inquiryAction

Action. Prefills the existing POPSMEDIA contact form for user review. It does not submit the form and performs no financial transaction.

View tool JSON
{
  "name": "start_inquiry",
  "kind": "act",
  "impl": "imperative",
  "description": "Action. Prefills the existing POPSMEDIA contact form for user review. It does not submit the form and performs no financial transaction.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "description": "Sender name."
      },
      "email": {
        "type": "string",
        "description": "Sender email address."
      },
      "message": {
        "type": "string",
        "description": "Project or inquiry message."
      },
      "service": {
        "type": "string",
        "description": "Optional requested service id, slug or name."
      }
    },
    "required": [
      "name",
      "email",
      "message"
    ],
    "additionalProperties": false
  }
}