drio
Open app

mcp-server-skyfire

Source

Catalog onlyCatalog onlySTDIO

Overview

This project is a Model Context Protocol (MCP) server implementation that enables AI models to make payments via the Skyfire payment system, utilizing a standardized protocol. # How to use mcp-server-skyfire? To use the server, clone the repository, install dependencies, set up your Skyfire API key in the .env file, build the project, and then run the server. You can initiate payments using the make_payment tool exposed by the server. # Key features of mcp-server-skyfire: - Implements the Model Context Protocol for payment functionality. - Exposes a make_payment tool to facilitate payments to Skyfire users. - Comprehensive error handling for various scenarios. # Use cases of mcp-server-skyfire:

  1. Integrating AI systems with payment processing capabilities.
  2. Automating financial transactions between users in any application utilizing the Skyfire payment infrastructure.
  3. Developing custom applications that require secure payment processing. # FAQ from mcp-server-skyfire: - How do I set up the project? > Clone the repository, install dependencies via npm, and configure your Skyfire API key in a .env file. - What technologies are used in this project? > The project is built using Node.js and TypeScript, utilizing modern JavaScript features (ES2022 compatible). - What happens if the payment fails? > The server implements error handling to provide appropriate error messages based on the failure scenario.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":415,"uuid":"b6899323-94c9-48ba-bc3e-149b03a26c1d","name":"mcp-server-skyfire","title":"mcp-server-skyfire","description":null,"avatar_url":"https://avatars.githubusercontent.com/u/23727727?v=4","created_at":"$D2024-12-15T06:47:00.661Z","updated_at":"$D2024-12-16T06:52:44.956Z","status":"created","author_name":"0xtotaylor","author_avatar_url":"https://avatars.githubusercontent.com/u/23727727?v=4","tags":"mcp-server,skyfire,payment-integration","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/0xtotaylor/mcp-server-skyfire","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":null,"user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]

Add to your AI client

Use these steps to connect mcp-server-skyfire 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": {
    "mcp-server-skyfire-0xtotaylor": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-skyfire-0xtotaylor"
      ]
    }
  }
}

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": {
    "mcp-server-skyfire-0xtotaylor": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-skyfire-0xtotaylor"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-skyfire-0xtotaylor": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-skyfire-0xtotaylor"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-skyfire-0xtotaylor": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-skyfire-0xtotaylor"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-skyfire-0xtotaylor": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-skyfire-0xtotaylor"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-skyfire-0xtotaylor": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-skyfire-0xtotaylor"
      ]
    }
  }
}