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
npx super-tools-mcp-serverThis 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
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
get_tech_trends: Returns trending technology keywords (e.g., "AI Agents", "Rust").get_finance_trends: Returns trending finance keywords (e.g., "Crypto ETFs", "Green Bonds").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:
- Make sure you have Claude Desktop installed.
- Locate your config file:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
- 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.
- 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.