サポートされている API

  • リリースバージョン: Australia
  • 更新日 2026年02月13日
  • 所要時間:7分
  • このバージョンの ServiceNow MCP レジストリアプリケーションでサポートされている API をここにリストします。

    MCP サーバーを取得

    登録済み MCP サーバーのページネーションされたリストを取得します。

    ServiceNow MCP レジストリは、MCP サーバーメタデータを検出および取得するための HTTP API エンドポイントを提供します。リストサーバーエンドポイントは、レジストリーカタログを参照するためのプライマリディスカバリーインターフェイスです。

    エンドポイント

    HTTP メソッド: GET

    ルート: /api/sn_mcp_registry/v1/servicenow_mcp_registry/servers

    サンプル response

    {
      "result": {
        "metadata": {
          "count": 8,
          "nextCursor": null
        },
        "servers": [
          {
            "_meta": {
              "io.modelcontextprotocol.registry/official": {
                "isLatest": true,
                "active": "active",
                "type": "servicenow",
                "updatedAt": "2026-02-15 18:10:04",
                "publishedAt": "2026-02-15 18:08:28"
              }
            },
            "server": {
              "title": "Figma",
              "description": "Design and collaboration platform",
              "name": "com.figma.mcp@mcp-server-remote",
              "version": "latest",
              "repository": {
                "url": "https://github.com/figma/mcp-server-guide",
                "source": "github"
              },
              "remotes": [
                {
                  "type": "streamable-http",
                  "url": "https://mcp.figma.com/mcp"
                }
              ]
            }
          },
          {
            "_meta": {
              "io.modelcontextprotocol.registry/official": {
                "isLatest": true,
                "active": "active",
                "type": "servicenow",
                "updatedAt": "2026-02-15 18:06:59",
                "publishedAt": "2026-02-15 18:06:59"
              }
            },
            "server": {
              "title": "Linear",
              "description": "Issue tracking and project management",
              "name": "com.linear.app@mcp-server-remote",
              "version": "latest",
              "repository": {
                "url": "https://github.com/jerhadf/linear-mcp-server",
                "source": "github"
              },
              "packages": [
                {
                  "registryType": "npm",
                  "identifier": "linear-mcp-server",
                  "transport": {
                    "type": "stdio"
                  },
                  "environmentVariables": [
                    {
                      "name": "LINEAR_API_KEY",
                      "description": "Linear Personal API key from Settings > Account > Security & Access",
                      "isRequired": true,
                      "isSecret": true
                    }
                  ]
                }
              ],
              "remotes": [
                {
                  "type": "sse",
                  "url": "https://mcp.linear.app/sse"
                },
                {
                  "type": "streamable-http",
                  "url": "https://mcp.linear.app/mcp"
                }
              ]
            }
          }
        ]
      }
    }
    

    MCP サーバーのすべてのバージョンを取得します

    特定の MCP サーバーで利用可能なすべてのバージョンを取得します。

    [サーバーバージョンのリスト] エンドポイントは、特定の MCP サーバーで利用可能なすべてのバージョンを取得します。

    エンドポイント

    HTTP メソッド: GET

    ルート: /api/sn_mcp_registry/v1/servicenow_mcp_registry/servers/{mcp_server_name}/versions

    パスパラメーター

    パラメーター タイプ 必須 説明
    mcp_server_name 文字列 はい MCP サーバーの URL エンコード名。たとえば、 com.figma.mcp@mcp-server-remote です。

    サンプル response

    {
      "result": {
        "serverName": "com.linear.app@mcp-server-remote",
        "totalVersions": 1,
        "versions": [
          {
            "version": "latest",
            "isLatest": true,
            "active": "1",
            "type": "servicenow",
            "description": "Issue tracking and project management",
            "publishedAt": "2026-02-15 18:06:59",
            "updatedAt": "2026-02-15 18:06:59",
            "websiteUrl": "",
            "sysId": "7df5ef86ffcb3210a476ffffffffff45",
            "repository": {
              "url": "https://github.com/jerhadf/linear-mcp-server",
              "source": "github"
            },
            "package": [
              {
                "registryType": "npm",
                "identifier": "linear-mcp-server",
                "transport": {
                  "type": "stdio"
                },
                "environmentVariables": [
                  {
                    "name": "LINEAR_API_KEY",
                    "description": "Linear Personal API key from Settings > Account > Security & Access",
                    "isRequired": true,
                    "isSecret": true
                  }
                ]
              }
            ]
          }
        ]
      }
    }
    

    特定の MCP サーバーバージョンを取得

    完全なパッケージ定義、トランスポート構成、メタデータなど、特定の MCP サーバーバージョンの詳細な構成を取得します。

    エンドポイントは、特定の MCP サーバーバージョンの詳細構成を取得します。このエンドポイントは、パッケージ定義、トランスポート構成、認証要件、レジストリで管理されるメタデータを含む完全なサーバーメタデータを返します。最新バージョンを取得するには 、最新の 特別バージョンを使用します。

    エンドポイント

    HTTP メソッド: GET

    ルート: /api/sn_mcp_registry/v1/servicenow_mcp_registry/servers/{serverName}/versions/{version}

    パスパラメーター

    パラメーター タイプ 必須 説明
    serverName 文字列 はい URL エンコードされたサーバー名。たとえば、 com.figma.mcp@mcp-server-remote です。
    version 文字列 はい URL エンコードされたバージョン文字列。例えば、1.0.0latest を使用して最新バージョンを取得します。

    サンプル response

    {
      "result": {
        "server": {
          "name": "com.linear.app@mcp-server-remote",
          "title": "Linear",
          "description": "Issue tracking and project management",
          "version": "latest",
          "remotes": [
            {
              "type": "sse",
              "url": "https://mcp.linear.app/sse"
            },
            {
              "type": "streamable-http",
              "url": "https://mcp.linear.app/mcp"
            }
          ],
          "packages": [
            {
              "registryType": "npm",
              "identifier": "linear-mcp-server",
              "transport": {
                "type": "stdio"
              },
              "environmentVariables": [
                {
                  "name": "LINEAR_API_KEY",
                  "description": "Linear Personal API key from Settings > Account > Security & Access",
                  "isRequired": true,
                  "isSecret": true
                }
              ]
            }
          ],
          "icons": null,
          "repository": {
            "url": "https://github.com/jerhadf/linear-mcp-server",
            "source": "github"
          }
        },
        "_meta": {
          "active": "1",
          "publishedAt": "2026-02-15 18:06:59",
          "updatedAt": "2026-02-15 18:06:59",
          "isLatest": false
        }
      }
    }