npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ghostteam/network-mcp-node

v1.0.2

Published

LinkedIn Network MCP Server - Export your LinkedIn network data to CSV

Downloads

8

Readme

LinkedIn Network MCP

Local npm MCP server that fetches LinkedIn network data from your backend server and exports to CSV.

Architecture

Cursor (MCP Client)
    ↓ npx
Local MCP Server (server.py)
    ↓ HTTP GET /api/network (with X-UUID header)
Backend Server (Railway)
    ↓ Queries database
PostgreSQL Database
    ↓ Returns data
Backend Server
    ↓ Returns JSON response
Local MCP Server
    ↓ Converts to CSV
CSV File (saved locally)

Important: The MCP server does NOT connect directly to the database. It only communicates with your backend server via HTTP API.

Quick Start

  1. Make sure Python 3.8+ is installed (dependencies will be installed automatically)

  2. Configure ~/.cursor/mcp.json:

    {
      "mcpServers": {
        "network-mcp-node": {
          "command": "npx",
          "args": ["-y", "@ghostteam/network-mcp-node@latest"],
          "env": {
            "UUID": "your-uuid-here",
            "OUT_DIR": "C:\\Users\\User\\Documents"
          }
        }
      }
    }
  3. Restart Cursor

  4. Use the export_network_csv_to_file MCP tool

How It Works

  1. MCP Client (Cursor) runs npx @ghostteam/network-mcp-node@latest
  2. Local MCP Server starts (Python)
  3. User calls export tool → Server sends HTTP GET to backend:
    GET /api/network
    Headers: X-UUID: your-uuid-here
  4. Backend Server queries database for that UUID
  5. Backend returns JSON array of contacts
  6. MCP Server saves CSV file to OUT_DIR

Backend API Required

Your backend server needs this endpoint:

GET /api/network
Headers:
  X-UUID: <user-uuid>

Response:
  [
    {
      "full_name": "...",
      "email": "...",
      ...
    },
    ...
  ]

Environment Variables

  • UUID (required): User identifier sent to backend server
  • OUT_DIR (optional): Where to save CSV files (defaults to current directory)

Note: Backend URL is hardcoded in the package and cannot be changed via configuration.

Publishing to npm

npm login
npm publish --access public