Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM python:3.10-slim

WORKDIR /app

# Copy the project files
COPY . /app

# Upgrade pip and install project dependencies
RUN pip install --upgrade pip \
&& pip install .

# Expose port if needed. MCP communication over stdio so not required

# Command to launch the MCP server
CMD ["fewsats-mcp"]
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# fewsats-mcp: A Fewsats MCP Server

[![smithery badge](https://smithery.ai/badge/@Fewsats/fewsats-mcp)](https://smithery.ai/server/@Fewsats/fewsats-mcp)

## Overview

This MCP server integrates with [Fewsats](https://fewsats.com) and allows AI Agents to purchase anything in a secure way.
Expand Down Expand Up @@ -39,6 +41,14 @@ MCP is

## Installation

### Installing via Smithery

To install Fewsats Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@Fewsats/fewsats-mcp):

```bash
npx -y @smithery/cli install @Fewsats/fewsats-mcp --client claude
```

### Using uv (recommended)

When using [`uv`](https://docs.astral.sh/uv/) no specific installation is needed. We will
Expand Down
19 changes: 19 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml

startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- fewsatsApiKey
properties:
fewsatsApiKey:
type: string
description: Your Fewsats API key from fewsats.com
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'fewsats-mcp', env: { FEWSATS_API_KEY: config.fewsatsApiKey } })
exampleConfig:
fewsatsApiKey: dummy_fewsats_api_key_123