MCP server intelligence profile

Upvote Club MCP Bundle MCP Server

Enables single-click Claude Desktop installation of Upvote Club's MCP tools for link promotion and subscription management

Local OnlyOfficial distributionupvoteclub
Verified cleanSource Git · d60fa442f9946e6f6023aa987fa7e91b9273f2c1

Our scanner tested version d60fa442f9946e6f6023aa987fa7e91b9273f2c1 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
5Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

No verified installation or connection method is available in the retained evidence yet.

Identity

Canonical slugupvote-club-mcp-bundle-cde32a50DeploymentLocal Only
Canonical packageRepositoryupvoteclub/upvote-club-mcp-mcpb
First publishedLatest release
Last security verificationAug 25, 2026Classification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gitupvoteclub/upvote-club-mcp-mcpbd60fa442f9946e6f6023aa987fa7e91b9273f2c11Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gitupvoteclub/upvote-club-mcp-mcpbd60fa442f9946e6f6023aa987fa7e91b9273f2c1CurrentAug 25, 20265 toolsSucceeded · 0 resources · 0 promptsVerified clean
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceimmutable_git_commitSignature
MCP SDKArtifact SHA-256e288e686467dcdad2c0029b2bb21f0df7f911772c7c9b4bee7304140f2c9b6e7
Scannermcp-proof-engine 0.1.0Scan completedAug 25, 2026
Security ratingMethodology
0Proven
153Clean
0Inconclusive
0Flaky
0Errors

Current protocol inventory

2025-06-18Negotiated protocol
upvote-clubServer-reported name
1Capability groups
Aug 25, 2026Observed

Tools 5

ToolCategoryAnnotationsRisk
create_taskCreate a promotion task on Upvote.club. SPENDS points (price × actions_required, plan discount) and 1 daily slot. Call get_api_reference for examples and errors. Auto-detects platform from URL when social_network_code omitted. GitHub/Product Hunt min 16 pts/action; meaningful COMMENT min 64 pts/action.
Input schema
{
  "type": "object",
  "properties": {
    "post_url": {
      "type": "string",
      "format": "uri",
      "description": "URL of the post, profile, repo or product to promote"
    },
    "type": {
      "type": "string",
      "enum": [
        "LIKE",
        "FOLLOW",
        "COMMENT",
        "REPOST",
        "SAVE",
        "STAR",
        "WATCH",
        "CLAP",
        "CONNECT",
        "SUBSCRIBE",
        "RESTACK",
        "UP",
        "DOWN",
        "UPVOTE",
        "DOWNVOTE",
        "INSTALL",
        "UNICORN",
        "FAVORITE",
        "BOOST",
        "SHARE",
        "REPLY",
        "REVIEW",
        "MULTI_ACTION"
      ],
      "description": "Action type or MULTI_ACTION for bundles"
    },
    "price": {
      "type": "integer",
      "minimum": 2,
      "description": "Price per action in points (single-action tasks). See list_platforms for minimums."
    },
    "actions_required": {
      "type": "integer",
      "minimum": 1,
      "description": "Number of actions (single-action tasks)"
    },
    "social_network_code": {
      "type": "string",
      "enum": [
        "TWITTER",
        "LINKEDIN",
        "REDDIT",
        "INSTAGRAM",
        "TIKTOK",
        "YOUTUBE",
        "FACEBOOK",
        "MEDIUM",
        "DEVTO",
        "GITHUB",
        "QUORA",
        "SUBSTACK",
        "BLUESKY",
        "THREADS",
        "MASTODON",
        "PRODUCTHUNT",
        "HACKERNEWS",
        "INDIEHACKERS"
      ]
    },
    "is_pinned": {
      "type": "boolean",
      "description": "Pin task to top of executor feed (default false)"
    },
    "meaningful_comment": {
      "type": "boolean",
      "description": "COMMENT only: executors post exact meaningful_comments text (min 64 pts/action)"
    },
    "meaningful_comments": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string",
            "minLength": 1,
            "description": "Comment text executors must post (no links allowed)"
          }
        },
        "required": [
          "text"
        ],
        "additionalProperties": false
      },
      "minItems": 1,
      "description": "Comment texts for meaningful COMMENT actions, e.g. [{\"text\": \"Great tool\"}]"
    },
    "multi_action_items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "action_type": {
            "type": "string",
            "enum": [
              "LIKE",
              "FOLLOW",
              "COMMENT",
              "REPOST",
              "SAVE",
              "STAR",
              "WATCH",
              "CLAP",
              "CONNECT",
              "SUBSCRIBE",
              "RESTACK",
              "UP",
              "DOWN",
              "UPVOTE",
              "DOWNVOTE",
              "INSTALL",
              "UNICORN",
              "FAVORITE",
              "BOOST",
              "SHARE",
              "REPLY",
              "REVIEW"
            ],
            "description": "Action type, must be unique within the bundle"
          },
          "price": {
            "type": "integer",
            "minimum": 2,
            "description": "Price per action in points"
          },
          "actions_required": {
            "type": "integer",
            "minimum": 1,
            "description": "How many actions of this type to order"
          },
          "meaningful_comment": {
            "type": "boolean"
          },
          "meaningful_comments": {
            "$ref": "#/properties/meaningful_comments",
            "description": "Comment texts for meaningful COMMENT actions, e.g. [{\"text\": \"Great tool\"}]"
          }
        },
        "required": [
          "action_type",
          "price",
          "actions_required"
        ],
        "additionalProperties": false
      },
      "minItems": 2
    }
  },
  "required": [
    "post_url",
    "type"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "readOnlyHint": false,
  "destructiveHint": false,
  "idempotentHint": false,
  "openWorldHint": true
}
WritesNon-destructiveNon-idempotentOpen world
delete_taskDelete an Upvote.club task. Refunds unused points and restores one daily task slot. Completed tasks cannot be deleted. Confirm with the user first.
Input schema
{
  "type": "object",
  "properties": {
    "task_id": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "description": "ID of the task to delete"
    }
  },
  "required": [
    "task_id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "readOnlyHint": false,
  "destructiveHint": true,
  "idempotentHint": true,
  "openWorldHint": true
}
WritesDestructiveIdempotentOpen world
get_api_referenceFull Upvote.club Public API reference for MCP: all tool inputs/outputs, request examples (single-action, MULTI_ACTION, meaningful comments), minimum prices per platform/action, billing rules, and complete error catalog. Call before create_task if unsure about fields or pricing.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
Annotations
{
  "readOnlyHint": true,
  "openWorldHint": false
}
Read onlyClosed world
get_task_statusGet status and progress of one or more Upvote.club tasks (actions completed, progress percentage, meaningful comment submissions).
Input schema
{
  "type": "object",
  "properties": {
    "task_ids": {
      "type": "array",
      "items": {
        "type": "integer",
        "exclusiveMinimum": 0
      },
      "minItems": 1,
      "description": "Task IDs from create_task"
    }
  },
  "required": [
    "task_ids"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "readOnlyHint": true,
  "openWorldHint": true
}
Read onlyOpen world
list_platformsList all social platforms supported by Upvote.club with their available promotion actions, minimum price per action (in points), and example URLs. Call this first if you are unsure which platform or action applies to the link the user wants to promote.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
Annotations
{
  "readOnlyHint": true,
  "openWorldHint": false
}
Read onlyClosed world

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Upvote Club MCP Bundle MCP Server questions

How do I install Upvote Club MCP Bundle MCP Server?

No verified package installation command is available in the retained catalog evidence.

What tools does Upvote Club MCP Bundle MCP Server provide?

Upvote Club MCP Bundle MCP Server exposed 5 tools during independent protocol observation, including create_task, delete_task, get_api_reference, get_task_status, list_platforms.

Is Upvote Club MCP Bundle MCP Server secure?

Our scanner tested version d60fa442f9946e6f6023aa987fa7e91b9273f2c1 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP ServersMCP Servers With Completed Verification

Related MCP servers from this publisher

Related records share independently retained publisher or namespace evidence. They are not automatically endorsed alternatives.

Let’s talk about MCP security.

Share your details and our security team will contact you.