1. Conduid
  2. Developer Tools
  3. Super Tools MCP Server
MCP server · Developer Tools

Super Tools MCP Server

MCP server: Super Tools MCP Server

Unclaimed last commit 7 months ago devtools
44Fair

Scored 4 months ago · breakdown

About Super Tools MCP Server

Super Tools MCP Server is an MCP server published by jamalla in the Developer Tools category: mCP server: Super Tools MCP Server. It has been installed 0 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx super-tools-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Super Tools MCP Server

Powered by Claude · Grounded in docs

I know everything about Super Tools MCP Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Super Tools MCP Server

A Model Context Protocol (MCP) server that provides trending keyword tools.

Tools

  1. get_tech_trends: Returns trending technology keywords (e.g., "AI Agents", "Rust").
  2. get_finance_trends: Returns trending finance keywords (e.g., "Crypto ETFs", "Green Bonds").
  3. get_entertainment_trends: Returns trending entertainment keywords (e.g., "Immersive VR", "Indie Game Revival").

How to Consume (Usage Methods)

Method 1: Claude Desktop (Recommended)

To use these tools within Claude Desktop:

  1. Make sure you have Claude Desktop installed.
  2. Locate your config file:
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  3. Add the server to the configuration:
{
  "mcpServers": {
    "super-tools": {
      "command": "uv",
      "args": [
        "run",
        "--with",
        "mcp",
        "python",
        "d:\\00_DS-ML-Workspace\\super-tools-mcp-server\\main.py"
      ]
    }
  }
}

Note: Adjust the path if you moved the project.

  1. Restart Claude Desktop. The hammer icon should appear, letting you attach these tools to your chats.

Method 2: MCP Inspector (Development & Testing)

The MCP Inspector is a web-based tool to test and inspect your server.

Run directly with mcp CLI:

# Make sure mcp CLI is installed
pip install mcp-cli

# Run the inspector
mcp dev main.py

Or if using uv:

uvx mcp-cli dev main.py

This will open a URL (usually localhost:5173) where you can list tools and simulate calls.

Method 3: Programmatic (MCP Client)

You can connect to this server programmatically using any MCP-compliant client library (Python, TypeScript, etc.).

example_client.py (Python):

import asyncio
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client

async def run():
    server_params = StdioServerParameters(
        command="python",
        args=["main.py"],
        env=None
    )

    async with stdio_client(server_params) as (read, write):
        async with ClientSession(read, write) as session:
            # Initialize
            await session.initialize()

            # List tools
            tools = await session.list_tools()
            print(f"Available tools: {[t.name for t in tools.tools]}")

            # Call a tool
            result = await session.call_tool("get_tech_trends")
            print(f"Tech Trends: {result.content}")

if __name__ == "__main__":
    asyncio.run(run())

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Super Tools MCP Server

How do I install Super Tools MCP Server?

Run npx super-tools-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Super Tools MCP Server safe to use with an AI agent?

Its trust score is 44 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Super Tools MCP Server still maintained?

The last commit was 7 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.