MCP server intelligence profile

Upvote.club — MCP Apps MCP Server

Provides an MCP Apps interface to the Upvote Club API, enabling task management with an inline progress card UI in Claude

HybridOfficial distributionupvoteclub
Verified cleanSource Git · f17ea7951ea0d425e02f3ce28cc5f0595bf13206

Our scanner tested version f17ea7951ea0d425e02f3ce28cc5f0595bf13206 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-apps-3f0d8badDeploymentHybrid
Canonical packageRepositoryupvoteclub/upvote-club-mcp-apps
First publishedLatest release
Last security verificationAug 25, 2026Classification confidence35%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gitupvoteclub/upvote-club-mcp-appsf17ea7951ea0d425e02f3ce28cc5f0595bf132061Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gitupvoteclub/upvote-club-mcp-appsf17ea7951ea0d425e02f3ce28cc5f0595bf13206CurrentAug 25, 20265 toolsSucceeded · 1 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-256a85c4ad37ebb0e80e471a06b750e4934b834ccd58c5084f01db92328579954e4
Scannermcp-proof-engine 0.1.0Scan completedAug 25, 2026
Security ratingMethodology
0Proven
153Clean
0Inconclusive
0Flaky
0Errors

Current protocol inventory

2025-06-18Negotiated protocol
upvote-club-appsServer-reported name
2Capability 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 Upvote.club tasks with an interactive progress card UI.
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 1

  • ui://upvote-club/task-status/mcp-app.htmlui://upvote-club/task-status/mcp-app.html

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Upvote.club — MCP Apps MCP Server questions

How do I install Upvote.club — MCP Apps MCP Server?

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

What tools does Upvote.club — MCP Apps MCP Server provide?

Upvote.club — MCP Apps 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 Apps MCP Server secure?

Our scanner tested version f17ea7951ea0d425e02f3ce28cc5f0595bf13206 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.