bmlt-mcp-server

bmlt-mcp-server

Connects MCP-compatible AI clients to BMLT root servers, enabling natural language queries for NA meeting data including search by location, day, format, and more.

Category
Visit Server

README

bmlt-mcp-server

An MCP (Model Context Protocol) server for the Basic Meeting List Toolbox (BMLT) — the open-source meeting database used by Narcotics Anonymous service bodies worldwide.

Connect Claude (or any MCP-compatible AI client) to a BMLT root server and query NA meeting data using natural language.


What it does

Exposes four tools:

Tool Description
bmlt_search_meetings Search meetings by day, format, location, name, or geo coordinates
bmlt_get_meeting_details Get full details for a specific meeting by ID
bmlt_get_formats List all meeting format codes and descriptions (O, C, VM, BT, etc.)
bmlt_get_service_bodies List all service bodies (areas/regions) on the root server
bmlt_get_server_info Check root server version and geographic center

Example prompts once connected

  • "What NA meetings are happening in Portland tonight?"
  • "Find open virtual meetings on Tuesday"
  • "Show me all meetings within 5 miles of downtown Portland"
  • "What does the format code 'BT' mean?"
  • "List all service bodies on the WSZF server"

Defaults

Out of the box, the server points to:

  • Root server: https://bmlt.wszf.org/main_server (WSZF network)
  • Default service body: 26 (Portland Area NA)

All tools accept a root_server_url parameter to point at any BMLT root server, and service_body_ids to scope searches to other areas.


Installation

git clone https://github.com/jbonjour/bmlt-mcp-server.git
cd bmlt-mcp-server
npm install
npm run build

Usage

With Claude Desktop (stdio — recommended)

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

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

Restart Claude Desktop. You'll see the BMLT tools available in your chat.

With Claude Code

claude mcp add bmlt node /absolute/path/to/bmlt-mcp-server/dist/index.js

HTTP mode (for remote/multi-client use)

TRANSPORT=http PORT=3000 node dist/index.js
# Server listens on http://localhost:3000/mcp

Development

npm install
npm run build      # compile TypeScript → dist/
npm start          # run compiled server (stdio)

# Or run via HTTP for testing:
TRANSPORT=http PORT=3000 npm start

To test with the MCP Inspector:

npx @modelcontextprotocol/inspector node dist/index.js

Environment variables

Variable Default Description
TRANSPORT stdio Transport mode: stdio or http
PORT 3000 HTTP port (only used when TRANSPORT=http)

Changing the default root server or service body

Edit src/constants.ts:

export const DEFAULT_ROOT_SERVER = "https://bmlt.wszf.org/main_server";
export const DEFAULT_SERVICE_BODY_ID = 26; // Portland NA

Then rebuild: npm run build


BMLT root servers

Any NA service body running BMLT can be queried. Common root servers:

Network URL
WSZF (Pacific Northwest) https://bmlt.wszf.org/main_server
NA World Services (aggregator) https://na.org/main_server

Find your region's root server at bmlt.app.


Contributing

PRs welcome. This was built to support Portland Area NA's website modernization project and open-sourced for the broader NA tech community.


License

MIT — free to use, share, and modify. All work done by and for the NA community.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured