← sndev.io

INDIVIDUAL MCP TOOL

search_products

Search the ServiceNow product-to-API mapping.

sndev.ionone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

sndev.io

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.sndev-io]
url = "https://sndev.io/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "sndev-io": {
      "type": "http",
      "url": "https://sndev.io/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: sndev-io
Remote MCP URL: https://sndev.io/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "sndev-io": {
      "url": "https://sndev.io/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "sndev-io": {
      "type": "http",
      "url": "https://sndev.io/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "sndev-io",
  "transport": "streamable-http",
  "url": "https://sndev.io/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • search_scripting — Search the ServiceNow scripting API reference (server-side, client-side, and mobile).
  • search_rest — Search the ServiceNow REST API reference.
  • search_schema — Search the ServiceNow table schema — 14687 tables, fields, inheritance hierarchy, and reference relationships.
  • search_fluent — Search the ServiceNow Fluent API reference — the TypeScript DSL from @servicenow/sdk/core for defining application metadata in .now.ts files.
  • search_plugins — Search the ServiceNow plugin/application registry — 723 scoped apps with names, descriptions, versions, and licensing info.
  • search_encoded_query — Search the ServiceNow encoded query reference — 28 operators, join/order syntax, dot-walking, 16 dynamic filters, and 12 common query patterns.
  • search_patterns — Search the ServiceNow code patterns library — 27 real-world code recipes across 12 categories including GlideRecord, GlideAggregate, REST integrations, business rules, client scripts, and anti-patterns.
  • search_script_includes — Search 4646 ServiceNow script includes — reusable server-side utility classes with extracted method signatures.