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

prexist

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prexist

MCP server exposing Prexist product and skill research tools

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
33
-5.71%
Maintainers
1
Weekly downloads
 
Created
Source

Prexist MCP Server

MCP server that exposes Prexist product research and agent skill discovery tools. Search across 9 platforms to find existing products similar to your idea.

Works with Claude Code, Cursor, Windsurf, and any MCP-compatible client.

Quick Setup

Claude Code

claude mcp add prexist -- npx -y prexist

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "prexist": {
      "command": "npx",
      "args": ["-y", "prexist"]
    }
  }
}

Windsurf / Other MCP Clients

Use stdio transport with the command npx -y prexist.

Tools

ToolDescription
prexist_searchSearch for existing products similar to a product idea across 9 platforms
prexist_search_skillsSearch agent skill directories (ClawHub, Skills Directory) for existing skills
prexist_platformsList all available platforms and skill directories

Environment Variables

VariableRequiredDescription
PREXIST_API_URLNoOverride the Prexist API base URL (defaults to production)
SKILLS_DIRECTORY_API_KEYNoAPI key for skillsdirectory.com. If not set, that source is skipped.

Usage Examples

Product research: "Search for products similar to a collaborative task management tool for remote engineering teams that integrates with GitHub and provides automated standup summaries"

Skill discovery: "Search for existing agent skills related to code review automation"

List sources: "What platforms can Prexist search?"

Development

Build from source

cd mcp-server
npm install
npm run build

Local config (path-based)

If developing locally, you can point directly to the built output instead of using npx.

Claude Code -- add to .claude/settings.local.json:

{
  "mcpServers": {
    "prexist": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/prexist/mcp-server/dist/index.js"]
    }
  }
}

Cursor -- add to .cursor/mcp.json:

{
  "mcpServers": {
    "prexist": {
      "command": "node",
      "args": ["/absolute/path/to/prexist/mcp-server/dist/index.js"]
    }
  }
}

Keywords

mcp

FAQs

Package last updated on 21 Apr 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