MCP Hub
Back to servers

SBA MCP Server

Provides access to SBA small business size standards and SBIR/STTR federal R\&D funding data. It enables users to look up NAICS thresholds, verify business eligibility, and search for specific firms or award records across various federal agencies.

Updated
Jan 28, 2026

SBA (Small Business Administration) MCP Server

Access SBA small business size standards and SBIR/STTR data (federal R&D funding for small businesses).

Data Available

  • Size Standards - Revenue/employee thresholds that define "small business" by NAICS code
  • SBIR Firms - Small businesses receiving federal R&D funding
  • SBIR Awards - Federal R&D contracts awarded to small businesses

Setup

No API key required. Add to your MCP config:

{
  "sba": {
    "command": "node",
    "args": ["/path/to/sba/dist/index.js"],
    "env": {}
  }
}

Tools

get_size_standards

Look up SBA size standards by NAICS code or industry keyword.

ParameterRequiredDescription
naicsCodeNoNAICS code (e.g., "541511"). Can be partial for broader search
industryNoIndustry keyword (e.g., "software", "construction")

Example: Find size standards for software companies

industry: "software"

Returns: NAICS code, industry description, size threshold (revenue or employees)

check_size_standard

Check if a business qualifies as "small" under SBA standards.

ParameterRequiredDescription
naicsCodeYesNAICS code for the industry
annualRevenueNoAnnual revenue in millions (e.g., 15.5 for $15.5M)
employeeCountNoNumber of employees

Example: Check if a software company with $20M revenue qualifies

naicsCode: "541511"
annualRevenue: 20

search_sbir_firms

Search SBIR/STTR firms (innovative small businesses with federal R&D funding).

ParameterRequiredDescription
keywordNoSearch keyword
nameNoCompany name
stateNoState abbreviation (e.g., "CA")
womanOwnedNoFilter for woman-owned (true/false)
hubzoneNoFilter for HUBZone businesses (true/false)
limitNoMax results (default 50, max 5000)

Example: Find woman-owned tech firms in California

state: "CA"
womanOwned: true
keyword: "technology"

search_sbir_awards

Search SBIR/STTR awards (federal R&D contracts).

ParameterRequiredDescription
firmNoCompany name
keywordNoKeyword in award title/abstract
agencyNoFunding agency (DOD, NASA, NIH, NSF, DOE, etc.)
yearNoAward year (e.g., "2024")
stateNoState abbreviation
phaseNoSBIR phase: "1" (feasibility), "2" (development), "3" (commercialization)
limitNoMax results (default 50, max 5000)

Example: Find NASA awards in 2024

agency: "NASA"
year: "2024"
limit: 20

get_sbir_firm_details

Get detailed information about a specific SBIR firm including their awards.

ParameterRequiredDescription
nameYesExact company name

sbir_stats

Get aggregate SBIR/STTR statistics.

ParameterRequiredDescription
typeYes"firms" or "awards"
stateNoState filter
agencyNoAgency filter (for awards)
yearNoYear filter (for awards)

Example: Get firm statistics by state

type: "firms"
state: "TX"

SBIR Funding Agencies

AgencyFocus
DODDefense technology
NASASpace and aeronautics
NIHHealth and biomedical
NSFScience and engineering
DOEEnergy technology
USDAAgricultural innovation

Rate Limits

  • Size Standards API: No strict limit
  • SBIR API: Rate limited (has exponential backoff built in)

Note: The SBIR API has strict rate limits. If you receive rate limit errors, wait a few minutes before retrying.

Documentation

Reviews

No reviews yet

Sign in to write a review