Overview
Fewsats-mcp is a Model Context Protocol server that provides MCP (Machine Communication Protocol) functionality for Fewsats, enabling communication and data exchange between machines using the Fewsats protocol.
To use fewsats-mcp, you can either run it directly using uvx or install it via pip. After installation, you can run it as a script.
- Retrieve user wallet balance - Access user payment methods - Pay offers with specified IDs - Retrieve detailed payment information
- Facilitating machine communication in automated systems.
- Managing user transactions and payment processing.
- Integrating with other applications that require MCP functionality.
Add to your AI client
Use these steps to connect fewsats-mcp: A Fewsats MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"fewsats-mcp-fewsats": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fewsats-mcp-fewsats"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"fewsats-mcp-fewsats": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fewsats-mcp-fewsats"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"fewsats-mcp-fewsats": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fewsats-mcp-fewsats"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"fewsats-mcp-fewsats": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fewsats-mcp-fewsats"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"fewsats-mcp-fewsats": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fewsats-mcp-fewsats"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"fewsats-mcp-fewsats": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fewsats-mcp-fewsats"
]
}
}
}FAQ
How do I install fewsats-mcp?
You can install fewsats-mcp using pip or run it directly with uvx.
What is the Fewsats API key?
The Fewsats API key is a unique identifier that you obtain from Fewsats.com to access their services.
Can fewsats-mcp handle multiple payment methods?
Yes, fewsats-mcp can retrieve and manage multiple payment methods for users.