New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

nana800-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nana800-mcp-server

MCP Server for nana800.io Public API - enables AI IDEs to interact with your no-code projects

latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

nana800 MCP Server

MCP (Model Context Protocol) server for nana800.io Public API. This server enables AI-powered IDEs like Cursor, Claude Desktop, and VS Code to interact with your no-code automation projects.

Installation

npm install -g nana800-mcp-server
# or
npx nana800-mcp-server

Getting API Key

  • Go to https://cloud.nana800.io/settings
  • Create or copy your API key
  • Use it in the configuration below

Configuration

Cursor IDE

Add to your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "nana800": {
      "command": "npx",
      "args": ["nana800-mcp-server"],
      "env": {
        "MCP_API_KEY": "your_api_key_here",
        "MCP_PROJECT_ID": "your_default_project_id",
        "MCP_SCHEME_ID": "your_default_scheme_id"
      }
    }
  }
}

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "nana800": {
      "command": "npx",
      "args": ["nana800-mcp-server"],
      "env": {
        "MCP_API_KEY": "your_api_key_here",
        "MCP_PROJECT_ID": "your_default_project_id",
        "MCP_SCHEME_ID": "your_default_scheme_id"
      }
    }
  }
}

VS Code with Cline/Continue

Add to your extension settings:

{
  "mcpServers": {
    "nana800": {
      "command": "npx",
      "args": ["nana800-mcp-server"],
      "env": {
        "MCP_API_KEY": "your_api_key_here",
        "MCP_PROJECT_ID": "your_default_project_id",
        "MCP_SCHEME_ID": "your_default_scheme_id"
      }
    }
  }
}

Environment Variables

VariableRequiredDescription
MCP_API_KEYYesYour nana800.io API key
MCP_PROJECT_IDNoDefault project ID (can be overridden per tool call)
MCP_SCHEME_IDNoDefault scheme ID (can be overridden per tool call)

Available Tools

Project Management

ToolDescription
project_createCreate a new project
project_getGet project details by ID
project_list_by_payment_accountList projects by payment account
project_updateUpdate project properties
project_deleteDelete a project

Scheme Management

ToolDescription
scheme_createCreate a new scheme (workflow)
scheme_getGet scheme details
scheme_list_by_projectList all schemes in a project
scheme_updateUpdate scheme properties
scheme_deleteDelete a scheme
scheme_exportExport scheme as JSON
scheme_importImport nodes into a scheme
scheme_get_context_typeGet scheme context type
scheme_get_swagger_jsonGet OpenAPI spec for scheme

Node Management

ToolDescription
node_create_triggerCreate a trigger node
node_create_actionCreate an action node
node_getGet node details
node_list_by_schemeList all nodes in a scheme
node_updateUpdate node properties
node_update_configUpdate node configuration
node_deleteDelete a node
node_connectConnect two nodes
node_disconnectDisconnect two nodes
node_copyCopy a node
node_get_scheme_edgesGet all connections in a scheme
node_find_existing_buttonsFind node output buttons

Node Process Management

ToolDescription
node_process_getGet node process details
node_process_list_filteredList node processes with filters
node_process_deleteDelete a node process record

Scheme Process Management

ToolDescription
scheme_process_getGet scheme process details
scheme_process_list_filteredList scheme processes with filters
scheme_process_deleteDelete a scheme process record

Payment Account Management

ToolDescription
payment_account_get_by_userGet payment account by user ID
payment_account_get_by_projectGet payment account by project ID
payment_account_updateUpdate payment account info
payment_account_removeRemove payment account
payment_account_get_transactionsGet transaction history

Usage Examples

Once configured, you can ask your AI assistant things like:

  • "List all my projects"
  • "Create a new scheme called 'Email Notifications' in project X"
  • "Show me all nodes in scheme Y"
  • "Connect the webhook trigger to the email action"
  • "Export the scheme configuration"
  • "What processes are currently running?"

API Documentation

Full API documentation available at: https://api.nana800.io/docs

License

MIT

Keywords

mcp

FAQs

Package last updated on 20 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts