BankRegPulse MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add bank-reg-pulse -- npx bankregpulse-mcp-server
README.md

Real-time banking regulatory intelligence for AI assistants

BankRegPulse MCP Server

Real-time banking regulatory intelligence for AI assistants

Connect your AI assistant (Claude, ChatGPT, etc.) to live banking regulatory data from 100+ sources including OCC, FDIC, CFPB, Federal Reserve, and all 50 state banking departments.

What is This?

BankRegPulse MCP Server is a Model Context Protocol server that lets AI assistants query our regulatory intelligence database in real-time.

Instead of manually searching for regulatory updates, just ask your AI:

  • "What's in today's banking regulatory briefing?"
  • "Play today's regulatory podcast"
  • "Draft a LinkedIn post about today's CFPB updates"

Your AI will pull fresh data from BankRegPulse and answer with context.


Features

🎯 Three Core Tools

Tool Description Example Use
get_daily_briefing Daily regulatory intelligence summary "What did the OCC publish today?"
get_daily_podcast Audio briefing URL "Get today's regulatory podcast"
get_linkedin_post Pre-formatted social content "Draft a LinkedIn post about today's news"

📊 Data Coverage

  • Federal Agencies: OCC, FDIC, CFPB, Federal Reserve, Treasury
  • State Banking Departments: All 50 states
  • Congress: House Financial Services, Senate Banking
  • Federal Register: Final rules, proposed rules, notices
  • News: Reuters, American Banker, PYMNTS, Banking Dive
  • Update Frequency: Real-time (monitored 24/7)

Installation

Prerequisites

  • Node.js 18 or higher
  • An MCP-compatible AI assistant (Claude Desktop, Continue.dev, etc.)

Option 1: NPM (Recommended)

npx bankregpulse-mcp-server

Option 2: From Source

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

Setup for Claude Desktop

  1. Locate Claude Desktop config:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add BankRegPulse MCP server:

{
  "mcpServers": {
    "bankregpulse": {
      "command": "npx",
      "args": ["bankregpulse-mcp-server"]
    }
  }
}
  1. Restart Claude Desktop

  2. Test it:

    • Open Claude Desktop
    • Ask: "What's in today's banking regulatory briefing?"
    • Claude will query the MCP server and return live data

Setup for Other AI Assistants

Continue.dev (VS Code)

Add to ~/.continue/config.json:

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "npx",
          "args": ["bankregpulse-mcp-server"]
        }
      }
    ]
  }
}

Custom Integration

Any MCP-compatible client can connect via stdio:

import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js';

const transport = new StdioClientTransport({
  command: 'npx',
  args: ['bankregpulse-mcp-server']
});

const client = new Client({
  name: 'my-client',
  version: '1.0.0'
}, {
  capabilities: {}
});

await client.connect(transport);

HTTP/SSE Mode

Run the MCP server as an HTTP endpoint instead of stdio:

# Set environment variable
export MCP_TRANSPORT=http
export PORT=3000  # optional, defaults to 3000

# Run server
npx bankregpulse-mcp-server

Endpoints:

  • GET /health - Health check
  • GET /sse - SSE endpoint for MCP connections

Connect via HTTP:

import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { SSEClientTransport } from '@modelcontextprotocol/sdk/client/sse.js';

const transport = new SSEClientTransport(
  new URL('http://localhost:3000/sse')
);

const client = new Client({
  name: 'my-client',
  version: '1.0.0'
}, {
  capabilities: {}
});

await client.connect(transport);

Test with curl:

# Health check
curl http://localhost:3000/health

# SSE connection (requires MCP client)
curl -N http://localhost:3000/sse

Usage Examples

Daily Briefing

Ask Claude:

"What's in today's banking regulatory briefing?"

Claude queries:

Tool: get_daily_briefing
Date: today

You receive:

  • Executive summary of key developments
  • Document count and high-priority items
  • Agency-by-agency breakdown

Podcast

Ask Claude:

"Get me today's regulatory podcast"

Claude queries:

Tool:

Tools (3)

get_daily_briefingProvides a daily regulatory intelligence summary.
get_daily_podcastProvides an audio briefing URL.
get_linkedin_postGenerates pre-formatted social content.

Environment Variables

MCP_TRANSPORTSets the transport mode (e.g., http)
PORTPort for HTTP mode (defaults to 3000)

Configuration

claude_desktop_config.json
{"mcpServers": {"bankregpulse": {"command": "npx", "args": ["bankregpulse-mcp-server"]}}}

Try it

What's in today's banking regulatory briefing?
Play today's regulatory podcast
Draft a LinkedIn post about today's CFPB updates
What did the OCC publish today?

Frequently Asked Questions

What are the key features of BankRegPulse?

Real-time access to regulatory data from 100+ sources. Daily intelligence briefings updated at 6 AM EST. Audio briefing podcast integration. Automated generation of social media content. Covers Federal agencies, state departments, and legislative bodies.

What can I use BankRegPulse for?

Compliance officers staying updated on daily regulatory changes. Financial analysts tracking new rules from the FDIC and Federal Reserve. Social media managers drafting regulatory news updates for LinkedIn. Banking professionals needing quick summaries of Federal Register notices.

How do I install BankRegPulse?

Install BankRegPulse by running: npx bankregpulse-mcp-server

What MCP clients work with BankRegPulse?

BankRegPulse works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep BankRegPulse docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare