🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

Infosoft.Info.Subscription.Mcp.LocalServer

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Infosoft.Info.Subscription.Mcp.LocalServer

Package Description

nugetNuGet
Version
2026.7.31.5
Version published
Total downloads
617
Maintainers
1
Created
Source

INFO-Subscription MCP Server

s4mcp is a local Model Context Protocol (MCP) server for Infosoft's INFO-Subscription platform. It runs as a stdio tool and lets AI assistants (Claude Desktop, GitHub Copilot, etc.) query subscriptions, billing, orders, subscribers, and catalogue data directly from your chat interface.

Prerequisites

  • .NET 10 runtime (or use a self-contained build)
  • An INFO-Subscription tenant and user

Installation

dotnet tool install --global Infosoft.Info.Subscription.Mcp.LocalServer

Usage

The only required argument is your INFO-Subscription tenant ID:

s4mcp --tenant <TENANT_ID>

On first run, a browser window opens for B2C sign-in. Tokens are cached for subsequent runs.

Claude Desktop

Configuration file location:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "s4": {
      "command": "s4mcp",
      "args": ["--tenant", "<TENANT_ID>"]
    }
  }
}

VS Code (GitHub Copilot)

Add to your user settings.json:

{
  "github.copilot.chat.mcp.servers": {
    "s4": {
      "command": "s4mcp",
      "args": ["--tenant", "<TENANT_ID>"],
      "transport": "stdio"
    }
  }
}

Or add a workspace .vscode/mcp.json:

{
  "servers": {
    "s4": {
      "command": "s4mcp",
      "args": ["--tenant", "<TENANT_ID>"],
      "type": "stdio"
    }
  }
}

Placeholders

PlaceholderMeaning
<TENANT_ID>Your INFO-Subscription tenant ID (GUID)

Keywords

FAQs

Package last updated on 31 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts