Metadata-Version: 2.3
Name: sam-mcp
Version: 0.2.1
Summary: MCP server for accessing SAM.gov APIs
Keywords: mcp,sam.gov,government,contracts,procurement
Author: Robert Sivilli
Author-email: Robert Sivilli <robert.sivilli@gmail.com>
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Dist: fastmcp>=3.1.1
Requires-Dist: httpx>=0.28.1
Requires-Dist: pydantic-settings>=2.13.1
Requires-Python: >=3.13
Description-Content-Type: text/markdown

# sam-mcp

An MCP server for accessing [SAM.gov](https://sam.gov) APIs, built with [FastMCP](https://github.com/jlowin/fastmcp) and Python.

## Prerequisites

- [uv](https://docs.astral.sh/uv/getting-started/installation/)
- A SAM.gov API key — get one at [sam.gov/workspace/profile/account-details](https://sam.gov/workspace/profile/account-details)

## Setup

```bash
git clone https://github.com/rsivilli/sam-mcp
cd sam-mcp
cp .env.example .env
```

Edit `.env` and set your API key:

```env
SAM_API_KEY=your_api_key_here
```

## Running the server

**stdio** (for MCP clients that spawn the process, e.g. Claude Desktop):

```bash
uv run sam-mcp
```

**HTTP** (for connecting remotely):

```bash
uv run sam-mcp-http
```

## Claude Desktop configuration

Add the following to your `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "sam-gov": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/sam-mcp", "sam-mcp"],
      "env": {
        "SAM_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

## Available tools

### Entity & registration

| Tool | Description |
|---|---|
| `search_entities` | Search registered entities (vendors/organizations) by name, UEI, CAGE code, state, country, or registration status |
| `get_entity` | Get full details for a specific entity by UEI |
| `resolve_company` | Resolve a company name to its SAM.gov entity record and UEI — returns the single best match |

### Opportunities & exclusions

| Tool | Description |
|---|---|
| `search_opportunities` | Search contract opportunities/solicitations by keyword, NAICS code, set-aside type, date range, and more. `postedFrom` and `postedTo` are required. |
| `search_exclusions` | Search for debarred or suspended parties by name, UEI, or CAGE code |

### Contract awards

| Tool | Description |
|---|---|
| `search_contract_awards` | Search FPDS contract award records by recipient UEI, agency, NAICS code, date range, or dollar amount |
| `get_similar_awards` | Given a contract PIID, find other awarded contracts with the same NAICS code, awarding agency, and set-aside type |

### Company intelligence

| Tool | Description |
|---|---|
| `get_company_profile` | Full profile of a company: entity registration, contract awards, and subcontract partnerships in a single call |
| `get_company_partners` | Unified view of a company's subcontract relationships — as prime contractor and as subcontractor |
| `find_competitors` | Find companies registered under the same NAICS codes as a given entity |
| `search_subawards` | Search FSRS subcontract reports by prime contract ID or award key |

## API rate limits

Rate limits are per API key per day and reset at midnight UTC.

| User type | Daily limit |
|---|---|
| Non-federal (no SAM.gov role) | 10 requests/day |
| Non-federal (with SAM.gov role) | 1,000 requests/day |
| Federal personal key | 1,000 requests/day |
| Federal system account | 10,000 requests/day |

For production use, a **system account** key is recommended. Apply through your SAM.gov account settings.

## Development

Install dev dependencies and set up pre-commit hooks:

```bash
uv sync
uv run pre-commit install
```

Run linting and formatting checks:

```bash
uv run pre-commit run --all-files
```
