# Political Comms SDK [Health: Active]

**Category:** 💰 Finance & Fintech  
**Repository:** https://github.com/Political-Comms/political-comms-sdk  
**GitHub Stars:** 0  
**npm Downloads (last month):** 256  
**Views:** 2  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/api-6

## Description
Compliant political SMS/MMS from MCP clients: projects, contacts, analytics, billing.

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "political-comms-sdk": {
    "command": "npx",
    "args": ["-y","@political-comms/cli"]
  }
}
```

## Documentation & README

# Political Comms SDK

Official client libraries and tools for the [Political Comms](https://politicalcomms.com/) REST API. Direct-to-carrier political texting for campaigns, PACs, advocacy organizations, fundraisers, and elected officials.

The API surface covers Projects (compose, test, schedule, send), Contact Lists, Media Files, Organizations and hierarchy, Brands, Campaigns, Tracking Domains, Phone Numbers, Analytics, Billing, and Email (sending domains, sender identities, lists and imports, suppressions, templates and AI drafts, and campaigns). The full OpenAPI 3.1 specification lives at [politicalcomms.com/openapi.json](https://politicalcomms.com/openapi.json) and the reference documentation at [docs.politicalcomms.com](https://docs.politicalcomms.com/api-reference/introduction).

## Packages

| Package | Registry | Description |
|---------|----------|-------------|
| [`@political-comms/sdk`](https://github.com/Political-Comms/political-comms-sdk/blob/HEAD/packages/sdk) | npm | TypeScript SDK. Zero dependencies, native fetch, built-in retries. |
| [`@political-comms/cli`](https://github.com/Political-Comms/political-comms-sdk/blob/HEAD/packages/cli) | npm | Command line interface. `npx @political-comms/cli auth check` |
| [`@political-comms/mcp`](https://github.com/Political-Comms/political-comms-sdk/blob/HEAD/packages/mcp) | npm | MCP server for Claude and other MCP clients. |
| [`political-comms`](https://github.com/Political-Comms/political-comms-sdk/blob/HEAD/python) | PyPI | Python SDK mirroring the TypeScript client. |

## Authentication

Every client authenticates with an API key passed in the `X-API-Key` header. Keys are created in the dashboard under Admin > API and are prefixed `pc_live_`. All packages read the `POLITICAL_COMMS_API_KEY` environment variable by default.

## Development

Node 20 or later and Python 3.10 or later.

```bash
npm install
npm run build
npm test

cd python
python3 -m venv .venv
.venv/bin/pip install -e '.[dev]'
.venv/bin/pytest
```

## License

MIT. See [LICENSE](https://github.com/Political-Comms/political-comms-sdk/blob/HEAD/LICENSE).

