
Wraps the free Superhero API from akabab.github.io, giving you structured access to a database of comic book characters without needing authentication. Right now it exposes list_all to pull every hero's ID, name, and slug in one shot. Hosted via Pipeworx's gateway infrastructure, so you can either connect directly to this single source or hook into their full platform for 673+ data sources. Best for prototyping conversational interfaces around pop culture data, building superhero trivia bots, or adding comic character lookup to larger agent workflows. MIT licensed and works over streamable HTTP transport.
Public tool metadata for what this MCP can expose to an agent.
build_resumeBuild an ATS-optimized resume for a target role. Returns a downloadable PDF link and ATS score.3 paramsBuild an ATS-optimized resume for a target role. Returns a downloadable PDF link and ATS score.
emailstringtarget_rolestringuser_namestringsearch_jobsSearch for job listings matching keywords and optional location filters.2 paramsSearch for job listings matching keywords and optional location filters.
keywordsstringlocationstringauto_applyAutomatically apply to multiple jobs using a saved resume.2 paramsAutomatically apply to multiple jobs using a saved resume.
job_idsarrayresume_idstringsalary_researchResearch salary data for a specific role and location.2 paramsResearch salary data for a specific role and location.
locationstringrolestringoptimize_linkedinAnalyze and optimize a LinkedIn profile for better visibility and recruiter reach.1 paramsAnalyze and optimize a LinkedIn profile for better visibility and recruiter reach.
linkedin_urlstringseo_auditRun a comprehensive SEO audit on a website URL.1 paramsRun a comprehensive SEO audit on a website URL.
urlstringkeyword_researchGenerate keyword ideas with volume, difficulty, and CPC data from a seed keyword.1 paramsGenerate keyword ideas with volume, difficulty, and CPC data from a seed keyword.
seed_keywordstringoptimize_contentOptimize written content for a target keyword with SEO improvements.2 paramsOptimize written content for a target keyword with SEO improvements.
contentstringtarget_keywordstringshopify_store_auditAudit a Shopify store for SEO, conversion, performance, and trust issues.1 paramsAudit a Shopify store for SEO, conversion, performance, and trust issues.
store_urlstringoptimize_product_listingOptimize a Shopify product listing for better SEO and conversions.3 paramsOptimize a Shopify product listing for better SEO and conversions.
descriptionstringproduct_idstringtitlestringbuild_websiteGenerate a complete business website from a business name and industry.2 paramsGenerate a complete business website from a business name and industry.
business_namestringindustrystringlist_integrationsList all available third-party integrations for StartBiz websites.List all available third-party integrations for StartBiz websites.
No parameter schema in public metadata yet.
connect_serviceConnect a third-party service to a StartBiz website.2 paramsConnect a third-party service to a StartBiz website.
credentialsobjectservice_namestringshorten_urlCreate a shortened URL with click tracking and QR code.1 paramsCreate a shortened URL with click tracking and QR code.
long_urlstringurl_analyticsGet click analytics for a shortened URL including referrers, geo, and device data.1 paramsGet click analytics for a shortened URL including referrers, geo, and device data.
short_codestringcreate_agentCreate and deploy an autonomous AI agent for a specific task type.3 paramsCreate and deploy an autonomous AI agent for a specific task type.
configobjectnamestringtypestringlist_agentsList all deployed AI agents with their status and performance stats.List all deployed AI agents with their status and performance stats.
No parameter schema in public metadata yet.
agent_analyticsGet detailed performance analytics for a specific AI agent.1 paramsGet detailed performance analytics for a specific AI agent.
agent_idstringclaude_prompt_optimizeOptimize a prompt for Claude models to reduce token usage and improve output quality.2 paramsOptimize a prompt for Claude models to reduce token usage and improve output quality.
modelstringpromptstringclaude_cost_estimateEstimate the cost of running a prompt across Claude models at a given call volume.3 paramsEstimate the cost of running a prompt across Claude models at a given call volume.
estimated_callsnumbermodelstringpromptstringreplit_deployDeploy a project to Replit with automatic build, CDN, and health checks.2 paramsDeploy a project to Replit with automatic build, CDN, and health checks.
frameworkstringproject_namestringreplit_optimizeAnalyze a deployed Replit project and suggest performance, cost, and security improvements.1 paramsAnalyze a deployed Replit project and suggest performance, cost, and security improvements.
project_idstringsuperhero_statusGet the current status and health of all SuperHero API services.Get the current status and health of all SuperHero API services.
No parameter schema in public metadata yet.
get_referral_linkGenerate a cross-platform referral link for any SuperHero service with commission tracking.2 paramsGenerate a cross-platform referral link for any SuperHero service with commission tracking.
servicestringuser_idstringSuperhero MCP — wraps akabab.github.io/superhero-api (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
| Tool | Description |
|---|---|
list_all | List all superheroes in the database with their IDs, names, and slugs. |
get_hero | Get full data for a superhero by their numeric ID, including powerstats, biography, appearance, and images. |
get_powerstats | Get power statistics (intelligence, strength, speed, durability, power, combat) for a superhero by ID. |
get_biography | Get biography details (full name, aliases, publisher, first appearance, alignment) for a superhero by ID. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"superhero": {
"url": "https://gateway.pipeworx.io/superhero/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/superhero/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Superhero data" })
The gateway picks the right tool and fills the arguments automatically.
MIT