← Back to Plugins
MCP Server MCP

io.github.cyanheads/sanctions-screening-mcp-server

github By github 👁 1 views ▲ 0 votes

Screen names against OFAC, EU, UK, UN sanctions lists; resolve entities via GLEIF. Screening aid.

Homepage Verified source GitHub

Install

npx -y @cyanheads/[email protected]

Configuration Example

{
  "remotes": [
    {
      "type": "streamable-http",
      "url": "https://sanctions-screening.caseyjhand.com/mcp"
    }
  ],
  "packages": [
    {
      "registryType": "npm",
      "registryBaseUrl": "https://registry.npmjs.org",
      "identifier": "@cyanheads/sanctions-screening-mcp-server",
      "version": "0.1.10",
      "runtimeHint": "node",
      "transport": {
        "type": "stdio"
      },
      "packageArguments": [
        {
          "value": "run",
          "type": "positional"
        },
        {
          "value": "start:stdio",
          "type": "positional"
        }
      ],
      "environmentVariables": [
        {
          "description": "Sets the minimum log level for output (e.g., 'debug', 'info', 'warn').",
          "format": "string",
          "default": "info",
          "name": "MCP_LOG_LEVEL"
        },
        {
          "description": "Filesystem path for the local SQLite mirror. All sources are keyless; no API key is required. Populate the mirror out-of-band with `bun run mirror:init`.",
          "format": "string",
          "default": "./data/sanctions.db",
          "name": "SANCTIONS_MIRROR_PATH"
        },
        {
          "description": "Default Jaro-Winkler similarity floor (0-1) for fuzzy matches when the caller omits min_score.",
          "format": "string",
          "default": "0.85",
          "name": "SANCTIONS_FUZZY_MIN_SCORE"
        },
        {
          "description": "Hard cap on fuzzy candidates scored per query, to bound work on short queries.",
          "format": "string",
          "default": "50",
          "name": "SANCTIONS_FUZZY_MAX_RESULTS"
        }
      ]
    },
    {
      "registryType": "npm",
      "registryBaseUrl": "https://registry.npmjs.org",
      "identifier": "@cyanheads/sanctions-screening-mcp-server",
      "version": "0.1.10",
      "runtimeHint": "node",
      "transport": {
        "type": "streamable-http",
        "url": "http://localhost:3010/mcp"
      },
      "packageArguments": [
        {
          "value": "run",
          "type": "positional"
        },
        {
          "value": "start:http",
          "type": "positional"
        }
      ],
      "environmentVariables": [
        {
          "description": "The hostname for the HTTP server.",
          "format": "string",
          "default": "127.0.0.1",
          "name": "MCP_HTTP_HOST"
        },
        {
          "description": "The port to run the HTTP server on.",
          "format": "string",
          "default": "3010",
          "name": "MCP_HTTP_PORT"
        },
        {
          "description": "The endpoint path for the MCP server.",
          "format": "string",
          "default": "/mcp",
          "name": "MCP_HTTP_ENDPOINT_PATH"
        },
        {
          "description": "Authentication mode to use: 'none', 'jwt', or 'oauth'.",
          "format": "string",
          "default": "none",
          "name": "MCP_AUTH_MODE"
        },
        {
          "description": "Sets the minimum log level for output (e.g., 'debug', 'info', 'warn').",
          "format": "string",
          "default": "info",
          "name": "MCP_LOG_LEVEL"
        },
        {
          "description": "Filesystem path for the local SQLite mirror; a persistent volume on a hosted deployment. All sources are keyless; no API key is required.",
          "format": "string",
          "default": "./data/sanctions.db",
          "name": "SANCTIONS_MIRROR_PATH"
        },
        {
          "description": "Cron for the scheduled refresh of the sanctions lists + name index (HTTP transport only). GLEIF deltas are refreshed manually via mirror:refresh.",
          "format": "string",
          "default": "0 4 * * *",
          "name": "SANCTIONS_REFRESH_CRON"
        },
        {
          "description": "Default Jaro-Winkler similarity floor (0-1) for fuzzy matches when the caller omits min_score.",
          "format": "string",
          "default": "0.85",
          "name": "SANCTIONS_FUZZY_MIN_SCORE"
        },
        {
          "description": "Hard cap on fuzzy candidates scored per query, to bound work on short queries.",
          "format": "string",
          "default": "50",
          "name": "SANCTIONS_FUZZY_MAX_RESULTS"
        }
      ]
    }
  ]
}
mcp model-context-protocol streamable-http npm

Comments

Sign in to leave a comment

Loading comments...