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

mcp-prospect365

v7.1.3

Published

MCP server for Prospect365 CRM - Query business data with natural language

Readme

mcp-prospect365

MCP (Model Context Protocol) server for Prospect365 CRM. Query your business data using natural language.

Installation

npm install -g mcp-prospect365

Configuration

1. Set Environment Variables

Create a .env file with your Prospect365 credentials:

PROSPECT365_API_URL=https://crm-odata-v1-westeurope.prospect365.com/
PROSPECT365_TOKEN=your_api_token_here

2. Add to MCP Settings

Add the server to your MCP configuration file:

{
  "mcpServers": {
    "prospect365": {
      "command": "mcp-prospect365"
    }
  }
}

Available Tools

get_top_customers

Find your top customers by revenue for any time period.

Example Questions:

  • "Who was my top customer in August 2025?"
  • "Show me the top 5 customers last month"
  • "Which customers generated the most revenue this quarter?"

get_customer_names

Resolve customer IDs to their actual names.

Features:

  • Returns confidence scores for name resolution
  • Falls back to customer ID when name unavailable
  • Batch processing for multiple customers

get_order_metrics

Calculate comprehensive order metrics for any time period.

Metrics Included:

  • Total revenue
  • Average order value
  • Number of unique customers
  • Orders per customer
  • Optional breakdown by day/week/month

Example Usage

Once configured, you can ask natural language questions:

"Who was my top customer in February 2025?"
"What was my average order value last month?"
"How many unique customers ordered in Q1?"

Important Notes

Data Availability

  • Customer names depend on SalesLedgers data availability
  • Recent customers may not have names in the system yet
  • The tool handles missing names gracefully with confidence scores

Date Formats

All dates should be in YYYY-MM-DD format.

Rate Limits

Prospect365 API has a rate limit of 1,200 requests per 10 minutes.

Troubleshooting

Missing Customer Names

If customer names show as "Customer abc123...", this means:

  • The customer is not in the SalesLedgers table yet
  • This is common for new customers
  • The confidence score will be 0 in this case

Authentication Errors

Ensure your PROSPECT365_TOKEN is valid and has proper permissions.

No Data Returned

Check that orders exist for the specified date range.

Version History

  • v6.0.0 - Complete rewrite with production-ready tools
  • v0.1.0 - Initial prototype (deprecated)

License

MIT