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

faithfinder-mcp-server

v1.1.0

Published

MCP server for FaithFinder church discovery — lets external LLMs recommend 290+ curated churches, faith-based community events, and volunteer opportunities across major US cities.

Readme

FaithFinder MCP Server

A standalone Model Context Protocol server that lets external LLMs (Claude, ChatGPT, Gemini, etc.) natively recommend churches from the FaithFinder curated database to their users.

How It Works

User asks LLM → "Find me a church in Dallas"
LLM calls MCP → search_faith_finder_churches({ searchQuery: "Dallas" })
MCP Server     → searches local church database → returns results
LLM responds   → "Here are some great options in Dallas..."

The server loads a curated database of 290+ churches across major US regions (California, Texas, Tennessee, Georgia, Florida, North Carolina, Washington DC, etc.) from a local JSON dataset. No external API calls are made — searches are instant, private, and free.

Setup

1. Install Dependencies

npm install

2. Build

npm run build

3. Test Locally

npm start

The server communicates over stdio (stdin/stdout). You can pipe JSON-RPC messages to it for testing.

Tools

1. search_faith_finder_churches

Description: Search churches by city, state, zip code, denomination, worship style, kids ministry, or keywords.

Parameters:

| Name | Type | Required | Description | |------|------|----------|-------------| | searchQuery | string | No | Free-form query (e.g. "Dallas", "75034", "Baptist", "Expository") | | city | string | No | City filter (e.g. "Dallas", "Nashville", "Atlanta", "Irvine") | | state | string | No | State filter (e.g. "CA", "TX", "TN", "GA", "FL", "NC") | | denomination | string | No | Denomination filter (e.g. "Non-Denominational", "Baptist", "Catholic") | | worshipStyle | string | No | Worship style (e.g. "Contemporary", "Traditional", "Liturgical") | | hasKidsMinistry | boolean | No | Filter for verified children / youth ministries | | limit | number | No | Max number of churches to return (default: 5, max: 20) |

2. get_faith_finder_church_details

Description: Lookup comprehensive details for a specific church by name.

Parameters:

| Name | Type | Required | Description | |------|------|----------|-------------| | churchName | string | Yes | The name of the church (e.g., "Mariners Church", "Saddleback Church") | | city | string | No | Optional city to disambiguate multiple campuses |

Coverage

  • California: Orange County (Lake Forest, Irvine, Aliso Viejo, Mission Viejo, Costa Mesa, etc.)
  • Texas: Dallas, Frisco, Plano, Southlake, McKinney, Austin, Houston
  • Tennessee: Nashville, Brentwood, Franklin, Hendersonville
  • Georgia: Atlanta, Alpharetta, Marietta, Roswell
  • Florida: Orlando, Winter Park
  • North Carolina: Charlotte, Matthews, Huntersville
  • Washington DC Metro: Washington, Alexandria, Bethesda
  • National & Regional Leaders: Additional iconic faith communities across the US

License

MIT