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

@settlegrid/discovery

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@settlegrid/discovery

MCP Discovery Server — AI agents connect to discover and evaluate monetized tools on the SettleGrid marketplace.

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

@settlegrid/discovery

An MCP (Model Context Protocol) server that lets AI agents discover monetized tools on the SettleGrid marketplace. Instead of hard-coding tool URLs or relying on third-party directories, agents connect to this server and search, browse, and inspect tools programmatically — making SettleGrid the canonical discovery layer for the AI economy.

Quick start

With npx (no install)

npx @settlegrid/discovery

Install globally

npm install -g @settlegrid/discovery
settlegrid-discovery

From source (this repo)

cd packages/discovery-server
npm install
npm run dev    # tsx, auto-reloads
npm run build  # compile to dist/
npm start      # run compiled output

Configuration

VariableDefaultDescription
SETTLEGRID_API_URLhttps://settlegrid.aiBase URL of the SettleGrid API

Available tools

search_tools

Search for monetized AI tools on the marketplace.

ParameterTypeRequiredDescription
querystringnoFree-text search query
categorystringnoFilter by category
limitnumbernoMax results, 1-100 (default 20)

Returns an array of { name, slug, description, category, pricing, version, url }.

get_tool

Get full details for a specific tool by slug.

ParameterTypeRequiredDescription
slugstringyesTool slug identifier

Returns { name, slug, description, category, pricing, version, methods, quickStart, url }.

list_categories

List every tool category with counts. No parameters.

Returns an array of { name, count }.

get_developer

Get a developer's public profile and their published tools.

ParameterTypeRequiredDescription
slugstringyesDeveloper profile slug

Returns { name, bio, tools[], reputation }.

Add to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "settlegrid-discovery": {
      "command": "npx",
      "args": ["-y", "@settlegrid/discovery"]
    }
  }
}

To point at a local or staging API:

{
  "mcpServers": {
    "settlegrid-discovery": {
      "command": "npx",
      "args": ["-y", "@settlegrid/discovery"],
      "env": {
        "SETTLEGRID_API_URL": "http://localhost:3005"
      }
    }
  }
}

License

MIT

Keywords

settlegrid

FAQs

Package last updated on 24 Mar 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