Skip to main content
Glama
RRGU26

BankRegPulse

by RRGU26

BankRegPulse MCP Server

Real-time banking regulatory intelligence for AI assistants

npm version License: MIT Node Version MCP

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.


Related MCP server: sec-edgar-mcp

Features

๐ŸŽฏ Eight Tools

Tool

Description

Example Use

get_daily_briefing

The morning brief (lead, regulatory developments, industry signals, political, what's coming, what it means), as markdown with its canonical URL

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

get_weekly_digest

The Sunday print digest

"Summarize last week's regulatory developments"

list_briefings

Archive index: dates, titles, URLs

"Which edition covered the OCC charter decisions?"

get_blog_posts

Recent deep-dive analysis by Lex

"What has Lex written on the unsafe-or-unsound rule?"

get_blog_post

Full text of one deep dive, by slug

"Give me the full OCC-FDIC rule analysis"

get_upcoming_deadlines

Comment windows and effective dates from the deadline tracker

"What comment periods close in the next two weeks?"

get_daily_podcast

Audio URL and feed for the daily episode

"Get today's regulatory podcast"

get_linkedin_post

LinkedIn-ready post drafted from the brief

"Draft a LinkedIn post about today's news"

subscribe_to_daily_brief

Subscribe an email address to the free Daily Brief (6:45 AM ET) and Sunday digest; welcome email with one-click unsubscribe

"Subscribe me to LexRegPulse at name@bank.com"

๐Ÿ“Š 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.)

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: get_daily_podcast
Date: today

You receive:

  • Audio URL for the daily briefing podcast

  • Generated by AI from the day's regulatory developments


LinkedIn Post

Ask Claude:

"Draft a LinkedIn post about today's CFPB enforcement actions"

Claude queries:

Tool: get_linkedin_post
Date: today

You receive:

  • Pre-formatted LinkedIn post with hashtags

  • Key stats and highlights

  • Ready to copy and share


Advanced Usage

Query Specific Dates

"What was in the regulatory briefing on February 20, 2024?"

Claude will pass date: "2024-02-20" to the tool.

Custom API Endpoint

Set environment variable to use a different API:

export BANKREGPULSE_API_URL=https://your-custom-api.com

Troubleshooting

"No briefing found"

Cause: Briefing hasn't been generated yet (runs at 6 AM EST daily)

Solution: Query yesterday's briefing or wait until morning

"API request failed"

Cause: Network issue or API is down

Solution:

  1. Check https://bankregpulse-enterprise-api.onrender.com/health

  2. Verify internet connection

  3. Check Render status: https://status.render.com

"Unknown tool"

Cause: MCP server not properly installed or outdated

Solution:

npm cache clean --force
npx bankregpulse-mcp-server@latest

Development

Local Development

# Clone repo
git clone https://github.com/RRGU26/bankregpulse-mcp-server.git
cd bankregpulse-mcp-server

# Install dependencies
npm install

# Build
npm run build

# Run locally
npm start

Testing with MCP Inspector

npx @modelcontextprotocol/inspector npx bankregpulse-mcp-server

Opens a web UI to test tool calls.


Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  AI Assistant   โ”‚ (Claude, ChatGPT, etc.)
โ”‚  (MCP Client)   โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
         โ”‚ stdio
         โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  BankRegPulse   โ”‚
โ”‚   MCP Server    โ”‚ (this package)
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
         โ”‚ HTTPS
         โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  BankRegPulse   โ”‚
โ”‚      API        โ”‚ (bankregpulse-enterprise-api.onrender.com)
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
         โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚   PostgreSQL    โ”‚
โ”‚   Database      โ”‚ (100+ regulatory sources)
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

API Endpoints (Backend)

The MCP server calls these public API endpoints:

  • GET /api/mcp/briefing?date=YYYY-MM-DD - Daily briefing

  • GET /api/mcp/podcast?date=YYYY-MM-DD - Podcast URL

  • GET /api/mcp/linkedin-post?date=YYYY-MM-DD - LinkedIn post

No authentication required for basic usage.


Pricing

Free for community use.

No API key required. Rate limits apply:

  • 100 requests per hour per IP

  • Fair use policy

For enterprise usage (higher limits, SLA), contact: admin@bankregpulse.com


Support


Contributing

Contributions welcome! Please:

  1. Fork the repo

  2. Create a feature branch

  3. Submit a pull request


License

MIT License - see LICENSE for details.


Acknowledgments

  • Built on Model Context Protocol by Anthropic

  • Powered by BankRegPulse regulatory intelligence platform

  • Regulatory data from OCC, FDIC, CFPB, Federal Reserve, and state banking departments



Made with โค๏ธ for the banking compliance community

Available Tools

3 tools
get_daily_briefingBInspect

Get the latest daily banking regulatory intelligence briefing with summaries and key developments from OCC, FDIC, CFPB, Federal Reserve, and all 50 state banking departments.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateNoOptional: Specific date (YYYY-MM-DD). Defaults to today.

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It describes what the tool retrieves (briefing with summaries and key developments) but lacks critical behavioral details such as whether this is a read-only operation, if it requires authentication, rate limits, data freshness, or error handling. The description is functional but misses key operational context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that efficiently conveys the tool's purpose and scope without unnecessary words. It front-loads the key action ('Get the latest daily banking regulatory intelligence briefing') and follows with specific details. While concise, it could be slightly improved by breaking into two sentences for readability, but overall it earns its place with zero waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (retrieving structured regulatory data), lack of annotations, and no output schema, the description is minimally complete. It specifies content sources and type but omits details on output format, data structure, or error conditions. The description provides enough to understand the tool's intent but leaves gaps in practical usage context that the agent must infer or discover through trial.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the single parameter 'date' well-documented in the schema. The description does not add any parameter-specific information beyond what the schema provides, such as date format examples or default behavior details. However, with high schema coverage and only one optional parameter, the baseline score of 3 is appropriate as the schema adequately handles parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('daily banking regulatory intelligence briefing'), and distinguishes it from sibling tools by specifying the content type (briefing vs. podcast or LinkedIn post). It explicitly lists the sources covered (OCC, FDIC, CFPB, Federal Reserve, all 50 state banking departments), making the scope unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context by specifying the content type and sources, but does not explicitly state when to use this tool versus alternatives like get_daily_podcast or get_linkedin_post. It provides no guidance on prerequisites, exclusions, or comparative scenarios, leaving the agent to infer usage based on content differences alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_daily_podcastCInspect

Get the latest daily regulatory podcast audio URL. Listen to an AI-generated summary of the day's regulatory developments.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateNoOptional: Specific date (YYYY-MM-DD). Defaults to today.

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions retrieving a 'URL' and an 'AI-generated summary,' but doesn't disclose critical traits like whether this is a read-only operation, if it requires authentication, rate limits, error handling, or what format the output takes. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded, with two sentences that directly state the tool's function. There's no unnecessary information, and each sentence contributes to understanding the purpose. However, it could be slightly more structured by separating the URL retrieval and summary aspects more clearly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of retrieving media content with no annotations and no output schema, the description is incomplete. It doesn't explain what the output looks like (e.g., URL format, summary text), error cases, or behavioral details. For a tool that likely involves network calls and content delivery, more context is needed to use it effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with one optional parameter 'date' clearly documented. The description doesn't add any parameter-specific semantics beyond what the schema provides (e.g., it doesn't explain date format constraints or default behavior further). With high schema coverage, the baseline score of 3 is appropriate as the description doesn't compensate but also doesn't detract.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get the latest daily regulatory podcast audio URL' and 'Listen to an AI-generated summary of the day's regulatory developments.' It specifies the verb ('Get'), resource ('podcast audio URL'), and content type ('regulatory podcast'). However, it doesn't explicitly distinguish this from sibling tools like 'get_daily_briefing' or 'get_linkedin_post' beyond mentioning 'podcast' vs 'briefing'/'post'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools, prerequisites, or exclusions. The only implied context is for accessing daily regulatory content, but this is vague and doesn't help an agent choose between this and other tools like 'get_daily_briefing'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_linkedin_postBInspect

Get a pre-formatted LinkedIn post about today's regulatory developments, ready to copy and share on social media.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateNoOptional: Specific date (YYYY-MM-DD). Defaults to today.

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the output is 'pre-formatted' and 'ready to copy and share,' which adds some context about the return format. However, it doesn't describe critical behaviors like whether this is a read-only operation, if it requires authentication, rate limits, or error handling. For a tool with zero annotation coverage, this leaves significant gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that efficiently conveys the tool's purpose and output format. It's front-loaded with the main action and includes no unnecessary details, making it appropriately sized and zero-waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's low complexity (one optional parameter, no output schema, no annotations), the description is minimally adequate. It explains what the tool does and the output format but lacks details on behavioral traits and usage context. Without annotations or output schema, it should provide more guidance on when to use it and what to expect, but it meets a basic threshold.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with one parameter ('date') fully documented in the schema. The description doesn't add any parameter-specific information beyond what's in the schema. According to the rules, when schema_description_coverage is high (>80%), the baseline is 3 even with no param info in the description, which applies here.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get a pre-formatted LinkedIn post about today's regulatory developments, ready to copy and share on social media.' It specifies the verb ('Get'), resource ('LinkedIn post'), and content focus ('regulatory developments'), but doesn't explicitly differentiate from sibling tools like get_daily_briefing or get_daily_podcast. The purpose is clear but lacks sibling comparison.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides minimal usage guidance, stating it's for getting a LinkedIn post 'ready to copy and share on social media.' However, it doesn't specify when to use this tool versus alternatives like get_daily_briefing or get_daily_podcast, nor does it mention any prerequisites or exclusions. Usage context is implied but not explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updatesv1.1.0
    • First observedget_daily_briefing
    • First observedget_daily_podcast
    • First observedget_linkedin_post

TDQS

B3.2/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: get_daily_briefing provides text summaries, get_daily_podcast delivers audio content, and get_linkedin_post offers social media formatting. There is no overlap in functionality, making it easy for an agent to select the right tool based on the desired output format.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with 'get_' as the prefix, followed by a descriptive noun phrase (daily_briefing, daily_podcast, linkedin_post). This uniformity enhances readability and predictability across the tool set.

Tool Count3/5

With only 3 tools, the server feels thin for the domain of banking regulatory intelligence, which might involve more operations like searching archives or filtering by agency. While the tools cover core outputs, the count is borderline low for comprehensive coverage.

Completeness2/5

The tool set is severely incomplete for a regulatory intelligence server, as it only provides retrieval of pre-formatted outputs without any CRUD operations, search capabilities, or filtering options. Agents cannot interact with historical data, customize queries, or manage content, leading to significant gaps in functionality.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

  • Your agent needs company financials it can compute on โ€” statements, ratios, earnings, estimates, filings and insider activity as structured data, not a PDF. **What you can ask for** โ€ข "Give me 8 quarters of income statement, balance sheet and cash flow for this ticker." โ€ข "What do analysts estimate for next quarter, and how did the last four surprise?" โ€ข "Find this exact line item across every filing." โ€ข "Who bought or sold as an insider in the last 90 days?" โ€ข "Screen for profitable companies under this valuation with growing revenue." **How to use it** Point any MCP client at https://mcp.aisa.one/marketpulse/mcp and sign in with OAuth โ€” there is no key to create or paste. 21 tools: prices and snapshots, income statements, balance sheets, cash-flow statements, financial metrics and snapshots, earnings, analyst estimates, company facts, filings and filing items, line-item search, a screener, insider trades, macro interest rates, news, plus EDINET documents and filing digests for Japanese issuers. **Why this rather than the source** Statements as fields you can compute on, and a screener in the same place. **It is also a door to the rest** The same login reaches 26 sources and 580+ operations. Read the fundamentals here, then ask the same agent what social is saying about the ticker โ€” without adding a second server. **What it costs** Finding and inspecting an operation is free. Running one is billed per call at API prices, with no seat and no monthly minimum, and every call takes max_price_usd so an agent cannot overspend by accident. **Where else it reaches** https://mcp.aisa.one/finance/mcp for equities, crypto and prediction markets in one place.

  • The Octagon MCP server provides specialized AI-powered financial research and analysis by integrating with the Octagon Market Intelligence API. It enables users to analyze public market data (SEC filings, earnings transcripts, financial metrics, and stock data for 8000+ companies), private market data (3M+ companies, 500k+ funding rounds, 2M+ M&A/IPO transactions), and conduct deep research including web scraping capabilities. The server also features autonomous research agents that search hundreds of sources and return fully cited reports in approximately one minute.

  • Your agent needs markets โ€” prices and fundamentals for listed companies, the filings behind them, crypto, and what the prediction markets put the odds at. **What you can ask for** โ€ข "Pull this company's income statement, cash flow and balance sheet for the last 8 quarters." โ€ข "What did insiders buy or sell, and when?" โ€ข "Snapshot prices for these 50 tickers, then the OHLC history for the three that moved." โ€ข "What are the current odds on this event across Kalshi and Polymarket?" โ€ข "Screen for companies matching these financial criteria." **How to use it** Point any MCP client at https://mcp.aisa.one/finance/mcp and sign in with OAuth โ€” there is no key to create or paste. 49 tools: prices and snapshots, income statements, balance sheets and cash flows, metrics and ratios, earnings and analyst estimates, filings and line-item search, insider trades, macro interest rates, news, a screener; CoinGecko spot prices, market tables, OHLC, per-venue tickers and trending; Kalshi and Polymarket markets and trades; plus EDINET filings for Japan. **Why this rather than the source** Equities, crypto and event markets behind one account, so a cross-asset question is one conversation. **It is also a door to the rest** The same login reaches 26 sources and 580+ operations. Read the number here, then ask the same agent what X is saying about the ticker today โ€” without adding a second server. **What it costs** Finding and inspecting an operation is free. Running one is billed per call at API prices, with no seat and no monthly minimum, and every call takes max_price_usd so an agent cannot overspend by accident. **Where else it reaches** https://mcp.aisa.one/marketpulse/mcp ยท /crypto-market-data/mcp ยท /prediction-market-data/mcp ยท /stock-pulse/mcp for one slice each.

  • Your agent needs the two halves of a move at once โ€” what people are posting about a ticker right now, and what the price and the news actually did. **What you can ask for** โ€ข "What is X saying about $NVDA today, and what did the stock do?" โ€ข "Show the chatter and the price move for these five tickers side by side." โ€ข "Which tickers are being talked about most right now?" โ€ข "Pull the news and the snapshot behind this spike." **How to use it** Point any MCP client at https://mcp.aisa.one/stock-pulse/mcp and sign in with OAuth โ€” there is no key to create or paste. 4 tools: a combined stock-pulse call that joins X/Twitter chatter to the tickers mentioned, plus advanced tweet search, price snapshots and financial news. **Why this rather than the source** One call instead of four, with the join already done. **It is also a door to the rest** The same login reaches 26 sources and 580+ operations. Spot the move here, then ask the same agent for the filings or the fundamentals behind it โ€” without adding a second server. **What it costs** Finding and inspecting an operation is free. Running one is billed per call at API prices, with no seat and no monthly minimum, and every call takes max_price_usd so an agent cannot overspend by accident. **Where else it reaches** https://mcp.aisa.one/finance/mcp for equities, crypto and prediction markets in one place.

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    53 regulatory compliance evidence tools across 3 MCP servers for AI agents. MiCA authorization status, DORA evidence packs, stablecoin risk scoring (105+ tokens), macro intelligence (86 FRED series). Every response ECDSA-signed (ES256K), blockchain-anchored, audit-ready. Free tier, OAuth 2.0.
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Hosted MCP server that gives AI agents real-time access to SEC EDGAR filings search, 10-K/8-K reading, XBRL financial facts, and insider-trade (Form 4) alerts.
    13 npm
    1
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Turns financial documents into AI-generated investment briefs by exposing banking tools like search financials, compare companies, and risk flagging as an MCP server, allowing an LLM agent to discover and use them dynamically.
    3
    -
  • A
    license
    A
    quality
    B
    maintenance
    MCP server for token-efficient access to Open Finance Brasil rules, enabling coding agents to search and retrieve specific regulations, OpenAPI specs, and business rules through progressive disclosure.
    4
    31 npm
    MIT