Metadata-Version: 2.4
Name: far-oracle
Version: 1.0.1
Summary: MCP Server for Federal Acquisition Regulations (FAR) search
Author: blueskylineassets
License: MIT
Project-URL: Homepage, https://github.com/blueskylineassets/far-mcp-server
Project-URL: Repository, https://github.com/blueskylineassets/far-mcp-server
Project-URL: RapidAPI, https://rapidapi.com/yschang/api/far-rag-federal-acquisition-regulation-search
Keywords: mcp,far,federal-acquisition-regulations,government-contracting,ai-agent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mcp>=1.0.0
Requires-Dist: httpx>=0.25.0
Requires-Dist: python-dotenv>=1.0.0
Dynamic: license-file

# FAR Oracle - MCP Server

An MCP (Model Context Protocol) server that provides AI agents with access to Federal Acquisition Regulations (FAR) search.

<!-- mcp-name: io.github.blueskylineassets/far-mcp-server -->

## Installation

### Option 1: Install from PyPI

```bash
pip install far-oracle
```

### Option 2: Clone this repository

```bash
git clone https://github.com/blueskylineassets/far-mcp-server.git
cd far-mcp-server
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```

## Get Your API Key

Get your RapidAPI key from:
https://rapidapi.com/yschang/api/far-rag-federal-acquisition-regulation-search

## Configure Claude Desktop

Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "far-oracle": {
      "command": "python",
      "args": ["-m", "server"],
      "env": {
        "RAPIDAPI_KEY": "your-rapidapi-key"
      }
    }
  }
}
```

Or if installed from source:

```json
{
  "mcpServers": {
    "far-oracle": {
      "command": "/path/to/far-mcp-server/venv/bin/python",
      "args": ["/path/to/far-mcp-server/server.py"],
      "env": {
        "RAPIDAPI_KEY": "your-rapidapi-key"
      }
    }
  }
}
```

## Usage

Once configured, ask Claude Desktop questions like:

- "What are the FAR requirements for cybersecurity?"
- "Explain small business set-aside rules"
- "What contract clauses apply to data rights?"

## Pricing

See RapidAPI for pricing tiers:
https://rapidapi.com/yschang/api/far-rag-federal-acquisition-regulation-search/pricing

## License

MIT
