Weather

live

Real-time weather conditions and multi-day forecasts from Open-Meteo

Weather 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-weather": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/weather/mcp"
      ]
    }
  }
}
get_weather requires: latitude, longitude

Get current weather conditions for a location. Returns temperature, humidity, wind speed, and conditions.

latitude required number Latitude of the location
longitude required number Longitude of the location
get_forecast requires: latitude, longitude

Get a multi-day weather forecast for a location. Returns daily high/low temperatures, precipitation, and conditions.

latitude required number Latitude of the location
longitude required number Longitude of the location
days optional number Number of forecast days (1-16, default 7)
get_historical requires: latitude, longitude, start_date, end_date

Daily historical weather (ERA5 reanalysis) from 1940 onward. Returns date-keyed high/low, precipitation, and conditions for any lat/lon over an arbitrary date range. Use for climate baselines and "what was the weather on…" questions.

latitude required number Latitude of the location
longitude required number Longitude of the location
start_date required string YYYY-MM-DD (>= 1940-01-01)
end_date required string YYYY-MM-DD (inclusive)

Bluesky

live

Read Bluesky social data — profiles, posts, feeds, and threads. Most tools are public; search requires BYO auth.

Social 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bluesky": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bluesky/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Some tools (search_posts) require your own Bluesky credentials. Add your handle and an app password as query params on the gateway URL. Public tools work without any credentials.

Config with credentials
{
  "mcpServers": {
    "pipeworx-bluesky": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bluesky/mcp?bsky_handle=you.bsky.social&bsky_app_password=xxxx-xxxx-xxxx-xxxx"
      ]
    }
  }
}
get_profile public requires: handle

Get a Bluesky user profile by handle (e.g., "alice.bsky.social")

handle required string Bluesky handle (e.g., alice.bsky.social)
get_posts public requires: handle

Get recent posts from a Bluesky user's feed

handle required string Bluesky handle
limit optional number Number of posts (1-100, default 20)
search_posts auth required requires: query

Search Bluesky posts by keyword. Requires bsky_handle and bsky_app_password in the gateway URL query params.

query required string Search query
limit optional number Number of results (1-100, default 25)
get_feed public

Get posts from a Bluesky feed (default: discover/whats-hot)

feed_uri optional string AT URI of the feed generator (default: whats-hot)
limit optional number Number of posts (1-100, default 20)
get_followers public requires: handle

Get a user's followers

handle required string Bluesky handle
limit optional number Number of followers (1-100, default 50)
get_follows public requires: handle

Get accounts that a user follows

handle required string Bluesky handle
limit optional number Number of follows (1-100, default 50)
get_thread public requires: post_uri

Get a post thread by AT URI

post_uri required string AT URI of the post (at://did/app.bsky.feed.post/rkey)
resolve_handle public requires: handle

Resolve a Bluesky handle to a DID

handle required string Bluesky handle to resolve

Geo

live

Geocoding, country info, timezones, and sun times from public APIs

Geography 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-geo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/geo/mcp"
      ]
    }
  }
}
geocode requires: query

Convert an address or place name to latitude/longitude coordinates

query required string Address or place name to geocode
reverse_geocode requires: latitude, longitude

Convert latitude/longitude coordinates to an address

latitude required number Latitude
longitude required number Longitude
get_country requires: code_or_name

Get detailed information about a country by name or ISO code

code_or_name required string Country name or ISO 3166-1 alpha-2/alpha-3 code
get_timezone requires: latitude, longitude

Get the current timezone and local time for a location

latitude required number Latitude
longitude required number Longitude
get_sunrise_sunset requires: latitude, longitude

Get sunrise and sunset times for a location

latitude required number Latitude
longitude required number Longitude
date optional string Date in YYYY-MM-DD format (default: today)

Science

live

ISS tracking, earthquakes, air quality, and NASA's Astronomy Picture of the Day

Science 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-science": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/science/mcp"
      ]
    }
  }
}
get_iss_location

Get the current location of the International Space Station

get_earthquakes

Get recent earthquakes from USGS

days optional number Look back N days (1-30, default 1)
min_magnitude optional number Minimum magnitude (default 4.0)
get_air_quality requires: latitude, longitude

Get air quality measurements near a location from OpenAQ

latitude required number Latitude
longitude required number Longitude
get_apod

Get NASA Astronomy Picture of the Day

date optional string Date in YYYY-MM-DD format (default: today)

Crypto

live

Cryptocurrency prices and market data from CoinGecko, plus currency conversion

Crypto 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-crypto": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/crypto/mcp"
      ]
    }
  }
}
get_crypto_price requires: coin_id

Get the current price, market cap, and 24h change for a cryptocurrency. Use CoinGecko IDs (e.g., "bitcoin", "ethereum", "solana").

coin_id required string CoinGecko coin ID (e.g., bitcoin, ethereum, solana)
get_crypto_market

Get top cryptocurrencies by market cap with prices and 24h changes

vs_currency optional string Quote currency (default: usd)
limit optional number Number of coins (1-100, default 10)
get_exchange_rate requires: from, to

Get the exchange rate between two fiat currencies

from required string Source currency code (e.g., USD, EUR, GBP)
to required string Target currency code (e.g., EUR, JPY, GBP)
amount optional number Amount to convert (default: 1)

Dictionary

live

Word definitions, phonetics, synonyms, and antonyms from the Free Dictionary API

Reference 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dictionary": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dictionary/mcp"
      ]
    }
  }
}
define_word requires: word

Look up a word definition including phonetics, part of speech, meanings, and examples

word required string Word to define
get_synonyms requires: word

Get synonyms and antonyms for a word

word required string Word to look up

Books

live

Search books, get details by ISBN, and look up authors via Open Library

Reference 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-books": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/books/mcp"
      ]
    }
  }
}
search_books requires: query

Search for books by title, author, or keyword

query required string Search query
limit optional number Max results (1-50, default 10)
get_book requires: isbn

Get full book details by ISBN

isbn required string ISBN-10 or ISBN-13
get_author requires: author_key

Get author biography and works

author_key required string Open Library author key (e.g., OL23919A)

Holidays

live

Public holidays for 100+ countries — check dates, upcoming holidays, and today

Calendar 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-holidays": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/holidays/mcp"
      ]
    }
  }
}
get_holidays requires: country_code, year

Get public holidays for a country and year

country_code required string ISO 3166-1 alpha-2 code (e.g., US, GB, DE)
year required number Year (e.g., 2026)
is_today_holiday requires: country_code

Check if today is a public holiday in a country

country_code required string ISO 3166-1 alpha-2 code
next_holidays requires: country_code

Get upcoming public holidays for a country

country_code required string ISO 3166-1 alpha-2 code

Nutrition

live

Food product data, nutrition facts, and ingredients from Open Food Facts

Health 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nutrition": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nutrition/mcp"
      ]
    }
  }
}
search_products requires: query

Search food products by name

query required string Product search term
limit optional number Max results (1-50, default 10)
get_product requires: barcode

Get full product details by barcode

barcode required string Product barcode (EAN/UPC)

Recipes

live

Meal recipes searchable by name, ingredient, or category from TheMealDB

Food 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-recipes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/recipes/mcp"
      ]
    }
  }
}
search_meals requires: query

Search meals by name

query required string Meal name to search
get_meal requires: id

Get full meal recipe by ID

id required string Meal ID
random_meal

Get a random meal recipe

meals_by_ingredient requires: ingredient

Find meals that use a specific ingredient

ingredient required string Ingredient name (e.g., chicken, rice)

Cocktails

live

Cocktail recipes, ingredients, and mixing instructions from TheCocktailDB

Food 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cocktails": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cocktails/mcp"
      ]
    }
  }
}
search_cocktails requires: query

Search cocktails by name

query required string Cocktail name
get_cocktail requires: id

Get full cocktail details by ID

id required string Cocktail ID
random_cocktail

Get a random cocktail recipe

cocktails_by_ingredient requires: ingredient

Find cocktails using a specific ingredient

ingredient required string Ingredient name (e.g., vodka, lime)

Breweries

live

Search breweries by name, city, or type via Open Brewery DB

Local 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-breweries": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/breweries/mcp"
      ]
    }
  }
}
search_breweries requires: query

Search breweries by name

query required string Brewery name
limit optional number Max results (1-50, default 10)
get_brewery requires: id

Get brewery details by ID

id required string Brewery ID
breweries_by_city requires: city

Find breweries in a city

city required string City name
limit optional number Max results (1-50, default 10)

Art

live

Search 470,000+ artworks from the Metropolitan Museum of Art

Culture 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-art": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/art/mcp"
      ]
    }
  }
}
search_artworks requires: query

Search artworks by keyword

query required string Search term (artist, title, medium, etc.)
get_artwork requires: object_id

Get full artwork details by object ID

object_id required number Met Museum object ID
get_departments

List all museum departments


Poetry

live

Search and discover poetry by title, author, or random selection via PoetryDB

Literature 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-poetry": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/poetry/mcp"
      ]
    }
  }
}
search_poems requires: query

Search poems by title

query required string Title search term
poems_by_author requires: author

Get all poems by an author

author required string Author name (e.g., Emily Dickinson)
random_poems

Get random poems

count optional number Number of poems (1-10, default 1)

Search universities worldwide by name or country

Education 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-universities": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/universities/mcp"
      ]
    }
  }
}
search_universities

Search universities by name and/or country

name optional string University name or partial name
country optional string Country name (e.g., United States)

Character, episode, and location data from the Rick and Morty show

FunTV 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-rick-and-morty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/rick-and-morty/mcp"
      ]
    }
  }
}
search_characters

Search characters by name with optional status/species/gender filters

name optional string Partial name match
status optional string
species optional string
gender optional string
page optional number
get_character requires: id

Get a character by ID (1-826+)

id required number Character ID
search_episodes

Search episodes by name or code (e.g., S01E03)

name optional string
episode optional string
page optional number
get_episode requires: id

Get a single episode by ID

id required number
get_location requires: id

Get a single location by ID

id required number

RubyGems

live

Ruby gem metadata, versions, dependencies, and reverse-dependency lookup

DeveloperRuby 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-rubygems": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/rubygems/mcp"
      ]
    }
  }
}
get_gem requires: name

Full metadata for a gem (latest version, authors, license, downloads, URLs)

name required string Gem name (e.g., rails)
search_gems requires: query

Keyword search across all published gems

query required string
limit optional number
page optional number
get_versions requires: name

Full version history for a gem (latest first)

name required string
limit optional number
get_dependencies requires: name

Runtime + development dependencies for a specific gem version

name required string
version optional string Omit for latest
get_reverse_dependencies requires: name

Gems that depend on this gem (up to 50 names)

name required string

Carbon

live

UK electricity carbon intensity and generation mix data

Environment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-carbon": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/carbon/mcp"
      ]
    }
  }
}
get_intensity

Get current UK carbon intensity (gCO2/kWh)

get_intensity_by_date requires: date

Get carbon intensity for a specific date

date required string Date in YYYY-MM-DD format
get_generation_mix

Get current electricity generation mix by fuel type


US public company filings, financial facts, and company search from SEC EDGAR

Finance 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sec": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sec/mcp"
      ]
    }
  }
}
search_companies requires: query

Search SEC-registered companies by name or ticker

query required string Company name or ticker symbol
get_company_filings requires: cik

Get recent SEC filings for a company

cik required string SEC CIK number
form_type optional string Filter by form type (e.g., 10-K, 10-Q, 8-K)
get_company_facts requires: cik

Get XBRL financial facts (revenue, assets, etc.) for a company

cik required string SEC CIK number

IP Lookup

live

IP address geolocation — country, city, ISP, coordinates

Networking 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-iplookup": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/iplookup/mcp"
      ]
    }
  }
}
geolocate_ip requires: ip

Get geolocation data for an IP address

ip required string IPv4 or IPv6 address
batch_geolocate requires: ips

Geolocate multiple IP addresses at once (max 100)

ips required string Comma-separated IP addresses

DNS

live

DNS lookups, reverse DNS, and multi-record queries via Google DNS-over-HTTPS

Networking 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dns": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dns/mcp"
      ]
    }
  }
}
dns_lookup requires: domain

Query DNS records for a domain

domain required string Domain name
type optional string Record type (A, AAAA, MX, NS, TXT, CNAME — default A)
dns_lookup_all requires: domain

Get all common DNS record types for a domain at once

domain required string Domain name
reverse_dns requires: ip

Reverse DNS lookup for an IP address

ip required string IPv4 address

NPM

live

Search npm packages, get details, and check download stats

Development 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-npm": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/npm/mcp"
      ]
    }
  }
}
search_packages requires: query

Search npm packages by keyword

query required string Search term
limit optional number Max results (1-50, default 10)
get_package requires: name

Get full details for an npm package

name required string Exact package name
get_downloads requires: name

Get download statistics for a package

name required string Package name
period optional string Time period (last-day, last-week, last-month — default last-week)

Search Nobel Prize laureates and prizes by year and category

Reference 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nobel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nobel/mcp"
      ]
    }
  }
}
search_laureates

Search Nobel Prize laureates by name or category

name optional string Laureate name
category optional string Prize category (phy, che, med, lit, pea, eco)
get_prizes_by_year requires: year

Get Nobel Prizes awarded in a specific year

year required number Year (e.g., 2024)
category optional string Filter by category (phy, che, med, lit, pea, eco)

Currency exchange rates, conversion, and historical rates from Frankfurter

Finance 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-exchange": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/exchange/mcp"
      ]
    }
  }
}
get_rate requires: from, to

Get current exchange rate between two currencies

from required string Source currency (e.g., USD)
to required string Target currency (e.g., EUR)
convert requires: from, to, amount

Convert an amount between currencies

from required string Source currency
to required string Target currency
amount required number Amount to convert
get_historical_rate requires: from, to, date

Get exchange rate on a specific date

from required string Source currency
to required string Target currency
date required string Date (YYYY-MM-DD)
get_currencies

List all available currencies


Search programming questions and answers from Stack Overflow and other SE sites

Development 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-stackexchange": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/stackexchange/mcp"
      ]
    }
  }
}
search_questions requires: query

Search StackExchange questions by keyword

query required string Search query
site optional string SE site (default: stackoverflow)
limit optional number Max results (1-20, default 5)
get_answers requires: question_id

Get answers for a question by ID

question_id required number Question ID
site optional string SE site (default: stackoverflow)

World Bank

live

Country statistics, GDP, population, and development indicators from the World Bank

Reference 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-worldbank": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/worldbank/mcp"
      ]
    }
  }
}
get_country requires: country_code

Get country information (region, income level, capital)

country_code required string ISO 3166-1 alpha-2 or alpha-3 code
get_indicator requires: country_code, indicator

Get a World Bank indicator for a country over time

country_code required string Country code
indicator required string Indicator code (e.g., NY.GDP.MKTP.CD, SP.POP.TOTL)
date_range optional string Year range (e.g., 2015:2024)
get_population requires: country_code

Get population data for a country

country_code required string Country code
get_gdp requires: country_code

Get GDP data for a country

country_code required string Country code

Countries

live

World country data — search by name, ISO code, region, language, or currency via REST Countries API

Geography 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-countries": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/countries/mcp"
      ]
    }
  }
}
search_countries requires: query

Search for countries by name. Returns common name, official name, capital, region, subregion, population, area, languages, currencies, and flag emoji.

query required string Country name to search for (partial matches are supported)
get_country_by_code requires: code

Get full country information by ISO 3166-1 alpha-2 (e.g. "US") or alpha-3 (e.g. "USA") code.

code required string ISO 3166-1 alpha-2 or alpha-3 country code
countries_by_region requires: region

List all countries in a geographic region with name, capital, population, and flag.

region required string Region name — one of: africa, americas, asia, europe, oceania
countries_by_language requires: language

Find all countries where a given language is spoken. Returns name, capital, region, and population.

language required string Language name (e.g. "spanish", "french", "arabic")
countries_by_currency requires: currency

Find all countries that use a given currency. Returns name, capital, and region.

currency required string Currency code or name (e.g. "eur", "usd", "dollar")

Wikipedia

live

Search and retrieve Wikipedia articles — summaries, section structure, and random article discovery

Reference 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wikipedia": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wikipedia/mcp"
      ]
    }
  }
}
search_wikipedia requires: query

Search Wikipedia articles by keyword. Returns title, snippet, page ID, and word count for each result.

query required string Search query
limit optional number Number of results to return (1-50, default 10)
get_article_summary requires: title

Get a summary for a Wikipedia article by title. Returns the introduction extract, description, thumbnail URL, and content URLs.

title required string Wikipedia article title (e.g., "Albert Einstein")
get_article_sections requires: title

Get the section structure (table of contents) of a Wikipedia article by title.

title required string Wikipedia article title (e.g., "World War II")
get_random_articles

Get random Wikipedia articles. Returns title, extract, and page ID for each article.

count optional number Number of random articles to fetch (1-10, default 5)

GitHub

live

Search repositories, get repo details, list issues, and look up user profiles via GitHub REST API

Development 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-github": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/github/mcp"
      ]
    }
  }
}
search_repos requires: query

Search GitHub repositories by keyword

query required string Search query
sort optional string Sort by: stars, forks, or updated
per_page optional number Results to return (default 10, max 30)
get_repo requires: owner, repo

Get full details for a GitHub repository

owner required string Repository owner
repo required string Repository name
list_repo_issues requires: owner, repo

List issues for a GitHub repository

owner required string Repository owner
repo required string Repository name
state optional string Filter: open, closed, or all
per_page optional number Results to return (default 10)
get_user requires: username

Get a GitHub user public profile

username required string GitHub username

Search stories, get top stories, and retrieve items from Hacker News via Algolia and Firebase APIs

News 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hackernews": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hackernews/mcp"
      ]
    }
  }
}
search_hn requires: query

Search Hacker News stories via Algolia

query required string Search query
tags optional string Content type: story, comment, ask_hn, show_hn
per_page optional number Results to return (default 10)
get_top_stories

Get the current top stories from Hacker News

count optional number Number of stories (default 10)
get_item requires: id

Get a single HN item (story or comment) by ID

id required number Hacker News item ID

Search movies via iTunes and TV shows via TVmaze — details, episodes, and schedules

Entertainment 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-movies": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/movies/mcp"
      ]
    }
  }
}
search_movies requires: query

Search for movies via iTunes

query required string Movie title or keyword
limit optional number Results to return (1-25, default 10)
search_tv_shows requires: query

Search TV shows via TVmaze

query required string TV show name or keyword
get_tv_show requires: id

Get TV show details with episodes by TVmaze ID

id required number TVmaze show ID
get_tv_schedule

Get today's TV schedule by country

country optional string ISO country code (default US)
date optional string Date in YYYY-MM-DD (default today)

Sports

live

Search teams and players, get league standings, and recent/upcoming match results via TheSportsDB

Sports 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sports": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sports/mcp"
      ]
    }
  }
}
search_teams requires: query

Search sports teams by name

query required string Team name to search
search_players requires: query

Search players by name

query required string Player name to search
get_league_table requires: league_id, season

Get current league standings

league_id required string TheSportsDB league ID
season required string Season (e.g. 2024-2025)
get_last_events requires: team_id

Get last 15 match results for a team

team_id required string TheSportsDB team ID
get_next_events requires: team_id

Get next 15 upcoming matches for a team

team_id required string TheSportsDB team ID

Airports

live

Search airports by name/city, get airport details by IATA code, and calculate distances between airports

Travel 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-airports": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/airports/mcp"
      ]
    }
  }
}
search_airports requires: query

Search airports by name, city, or country

query required string Search query
page optional number Page number (default 1)
get_airport requires: iata_code

Get airport details by IATA code

iata_code required string IATA airport code (e.g. JFK)
calculate_distance requires: from, to

Calculate distance between two airports

from required string Origin IATA code
to required string Destination IATA code

Jokes

live

Random jokes, joke search, categories, and safe-mode filtering via JokeAPI

Fun 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-jokes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/jokes/mcp"
      ]
    }
  }
}
get_joke

Get a random joke by category

category optional string Category: Any, Programming, Misc, Dark, Pun, Spooky, Christmas
type optional string Type: single or twopart
safe_mode optional boolean Enable safe mode (default true)
search_jokes requires: query

Search jokes by keyword

query required string Keyword to search
category optional string Category filter
amount optional number Number of jokes (default 5)
get_joke_categories

List all available joke categories

get_joke_flags

List all available joke flags/filters


SpaceX

live

SpaceX launches, rockets, crew members, and Starlink satellite data from the SpaceX API v4

Science 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-spacex": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/spacex/mcp"
      ]
    }
  }
}
get_latest_launch

Get the most recent SpaceX launch

get_next_launch

Get the next upcoming SpaceX launch

get_past_launches

Get recent past launches sorted by date

limit optional number Number of launches (default 10)
get_rockets

List all SpaceX rockets

get_crew

List SpaceX crew members

get_starlink

Get Starlink satellite info

limit optional number Number of satellites (default 20)

US national debt, Treasury interest rates, and federal spending data from the Treasury Fiscal Data API

Finance 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-treasury": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/treasury/mcp"
      ]
    }
  }
}
get_national_debt

Get the current US national debt (debt to the penny)

get_treasury_rates

Get US Treasury average interest rates

date optional string Filter by record date (YYYY-MM-DD)
get_federal_spending

Get federal net cost / spending data

fiscal_year optional string Four-digit fiscal year (e.g., "2023")

FBI Wanted

live

Search the FBI Most Wanted list and retrieve detailed profiles from the official FBI API

Government 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fbiwanted": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fbiwanted/mcp"
      ]
    }
  }
}
search_wanted

Search the FBI Most Wanted list by keyword with pagination

query optional string Search keyword
page optional number Page number (default 1)
get_wanted_person requires: uid

Get full details for a specific FBI Wanted person by UID

uid required string Unique identifier of the wanted person

FDA

live

Search FDA adverse drug event reports, drug labeling, and food recalls via openFDA

Health 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fda": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fda/mcp"
      ]
    }
  }
}
search_drug_events requires: query

Search FDA adverse drug event (FAERS) reports

query required string Search query (e.g., drug name)
limit optional number Number of results (default 5)
search_drug_labels requires: query

Search FDA drug labeling / package inserts

query required string Drug name or active ingredient
limit optional number Number of results (default 5)
search_food_recalls

Search FDA food enforcement / recall records

query optional string Product name, company, or reason for recall
limit optional number Number of results (default 10)

COVID-19 global and country statistics, historical timelines, and vaccination coverage from disease.sh

Health 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-disease": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/disease/mcp"
      ]
    }
  }
}
get_global_stats

Get global COVID-19 statistics. Returns total cases, deaths, recovered, active cases, and today's new cases and deaths.

get_country_stats requires: country

Get COVID-19 statistics for a specific country. Returns cases, deaths, recovered, active, today's new cases/deaths, and population.

country required string Country name or ISO code (e.g., "USA", "germany", "gb")
get_historical

Get historical COVID-19 timeline data for a country or globally. Returns daily timeline of cases, deaths, and recoveries.

country optional string Country name or "all" for global data (default: "all")
days optional number Number of days of history to return (default: 30)
get_vaccine_stats

Get COVID-19 vaccination coverage timeline. Returns daily cumulative vaccine doses administered over the last 30 days.

country optional string Country name to get vaccine data for. Omit for global totals.

Pokémon

live

Pokémon details, type effectiveness, abilities, and evolution chains from PokéAPI

Games 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pokemon": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pokemon/mcp"
      ]
    }
  }
}
get_pokemon requires: name

Get Pokémon details by name or ID. Returns name, ID, types, base stats, abilities, height, weight, and sprites.

name required string Pokémon name (e.g., "pikachu") or numeric ID (e.g., "25")
get_type requires: type

Get type effectiveness information and Pokémon list for a given type. Returns damage relations and the first 20 Pokémon of that type.

type required string Type name (e.g., "fire", "water", "electric")
get_ability requires: ability

Get ability details including effect description and the list of Pokémon that can have this ability.

ability required string Ability name (e.g., "overgrow", "blaze", "static")
get_evolution_chain requires: id

Get the full evolution chain by chain ID. Returns each species with its evolution trigger, minimum level, and evolution item.

id required number Evolution chain ID (e.g., 1 for Bulbasaur line, 10 for Caterpie line)

Game Deals

live

Search game deals and prices across Steam, GOG, Epic, and dozens of other stores via CheapShark

Games 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gamedeals": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gamedeals/mcp"
      ]
    }
  }
}
search_deals

Search for game deals with optional filters. Returns title, store, sale price, normal price, savings percentage, Metacritic score, and deal rating.

title optional string Filter deals by game title (partial match supported)
upper_price optional number Maximum price filter
lower_price optional number Minimum price filter
store_id optional string Filter by store ID (use list_stores to get IDs)
sort_by optional string Sort order: "Deal Rating" (default), "Price", "Metacritic", or "Reviews"
page_size optional number Number of results (default 10, max 60)
search_games requires: query

Search for games by title. Returns each game with its cheapest current price and a deal ID to get more details.

query required string Game title to search for
limit optional number Maximum number of results (default 10)
get_game_details requires: id

Get full price details for a game including price history, cheapest price ever recorded, and current deals across all stores.

id required string CheapShark game ID (obtained from search_games)
list_stores

List all game stores tracked by CheapShark. Returns store names and IDs for use with search_deals.


Trivia

live

Trivia questions with category and difficulty filters from the Open Trivia Database

Games 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-trivia": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/trivia/mcp"
      ]
    }
  }
}
get_questions

Get trivia questions from the Open Trivia Database. Optionally filter by category, difficulty, and question type.

amount optional number Number of questions to return. Defaults to 10. Max 50.
category optional number Category ID to filter by. Use list_categories to get available IDs.
difficulty optional string Difficulty level. One of: easy, medium, hard.
type optional string Question type. One of: multiple (multiple choice), boolean (true/false).
list_categories

List all available trivia categories and their IDs.

get_category_stats requires: category

Get the total and per-difficulty question counts for a specific category.

category required number Category ID. Use list_categories to get available IDs.

Search artists and releases, and retrieve detailed discography and track listings from MusicBrainz

Music 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-musicbrainz": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/musicbrainz/mcp"
      ]
    }
  }
}
search_artists requires: query

Search for music artists by name using the MusicBrainz database.

query required string Artist name or search query.
limit optional number Maximum number of results to return. Defaults to 10.
get_artist requires: id

Get detailed information about an artist including their release list. Use the MusicBrainz ID from search_artists.

id required string MusicBrainz artist ID (UUID).
search_releases requires: query

Search for albums and releases by title or query.

query required string Release title or search query.
limit optional number Maximum number of results to return. Defaults to 10.
get_release requires: id

Get detailed information about a release including its full track listing. Use the MusicBrainz ID from search_releases.

id required string MusicBrainz release ID (UUID).

Search and discover internet radio stations worldwide by name, country, or genre from Radio Browser

Music 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-radio": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/radio/mcp"
      ]
    }
  }
}
search_stations requires: query

Search for radio stations by name. Results are ordered by votes (popularity).

query required string Station name to search for.
limit optional number Maximum number of results to return. Defaults to 10.
get_top_stations

Get the most popular radio stations by vote count, optionally filtered by country.

count optional number Number of stations to return. Defaults to 10.
country optional string Filter by country name (e.g. "Germany", "United States"). Omit for global results.
list_countries

List countries that have radio stations, with station counts.

list_tags

List the most common radio station genres and tags by station count.

limit optional number Maximum number of tags to return. Defaults to 20.

Flights

live

Live aircraft positions, arrivals, and departures from the OpenSky Network

Travel 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-flights": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/flights/mcp"
      ]
    }
  }
}
get_flights_in_area requires: lamin, lomin, lamax, lomax

Get all aircraft currently in a geographic bounding box. Returns icao24, callsign, origin country, position, altitude, velocity, and heading.

lamin required number Minimum latitude of the bounding box (degrees)
lomin required number Minimum longitude of the bounding box (degrees)
lamax required number Maximum latitude of the bounding box (degrees)
lomax required number Maximum longitude of the bounding box (degrees)
get_aircraft requires: icao24

Track a specific aircraft by its ICAO24 transponder address. Returns current position, velocity, altitude, and heading.

icao24 required string ICAO24 transponder address (6 hex characters, e.g. "a0b1c2")
get_arrivals requires: airport, begin, end

Get flights that arrived at an airport within a time range. Requires an ICAO airport code and Unix timestamps.

airport required string ICAO airport code (e.g. "KLAX", "EGLL")
begin required number Start of time range as Unix timestamp (seconds)
end required number End of time range as Unix timestamp (seconds, max 7 days after begin)
get_departures requires: airport, begin, end

Get flights that departed from an airport within a time range. Requires an ICAO airport code and Unix timestamps.

airport required string ICAO airport code (e.g. "KLAX", "EGLL")
begin required number Start of time range as Unix timestamp (seconds)
end required number End of time range as Unix timestamp (seconds, max 7 days after begin)

City Bikes

live

Live bike-sharing availability and station data for hundreds of networks worldwide from CityBik.es

Travel 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-citybikes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/citybikes/mcp"
      ]
    }
  }
}
list_networks

List all bike-sharing networks worldwide. Returns name, id, and location (city, country, lat/lng) for each network.

get_network requires: id

Get live station data for a bike-sharing network by its id. Returns network name and all stations with bike availability, empty slots, and coordinates.

id required string Network id (e.g. "citi-bike-nyc", "velib" for Paris, "nextbike-berlin")
search_networks requires: query

Search bike-sharing networks by city or country name. Returns matching networks with location info.

query required string City or country name to search for (e.g. "New York", "France", "Berlin")

Words

live

Find synonyms, antonyms, rhymes, related words, and autocomplete via the Datamuse API

Reference 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-words": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/words/mcp"
      ]
    }
  }
}
find_synonyms requires: word

Find synonyms for a word, ranked by similarity score.

word required string The word to find synonyms for
limit optional number Maximum number of results to return (default: 10)
find_rhymes requires: word

Find words that rhyme with a given word, ranked by score.

word required string The word to find rhymes for
limit optional number Maximum number of results to return (default: 10)
find_related requires: word

Find words related to a given word by a specific relation type (syn, ant, rhy, trg, jja, jjb).

word required string The word to find related words for
relation optional string Relation type: "syn" (synonyms), "ant" (antonyms), "rhy" (rhymes), "trg" (associated words), "jja" (adjectives for noun), "jjb" (nouns for adjective). Default: "trg"
limit optional number Maximum number of results to return (default: 10)
autocomplete requires: prefix

Get word completions from a prefix. Useful for autocomplete and spelling suggestions.

prefix required string The prefix to autocomplete (e.g. "hel" returns "hello", "help", etc.)
limit optional number Maximum number of results to return (default: 10)
find_words

Advanced word search. Find words matching a combination of meaning, pronunciation, and spelling constraints.

meaning_like optional string Find words with meaning similar to this phrase
sounds_like optional string Find words that sound like this word
spelled_like optional string Find words spelled like this pattern (use * as wildcard, e.g. "b*ttle")
limit optional number Maximum number of results to return (default: 10)

Translate

live

Translate text, detect languages, and list supported languages via LibreTranslate

Reference 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-translate": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/translate/mcp"
      ]
    }
  }
}
translate requires: text, source, target

Translate text from a source language to a target language. Returns the translated text.

text required string The text to translate
source required string Source language code (e.g. "en" for English, "es" for Spanish)
target required string Target language code (e.g. "es" for Spanish, "fr" for French)
detect_language requires: text

Detect the language of a text string. Returns an array of detected languages with confidence scores.

text required string The text whose language should be detected
list_languages

List all languages supported by the translation API. Returns language codes and names.


US unemployment rate, CPI inflation, and employment figures from the Bureau of Labor Statistics

Finance 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-econdata": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/econdata/mcp"
      ]
    }
  }
}
get_series requires: series_id

Fetch a BLS time series by series ID. Returns data points with year, period, and value.

series_id required string BLS series ID (e.g. "CUUR0000SA0" for CPI)
start_year optional string Start year as 4-digit string (e.g. "2020"). Optional.
end_year optional string End year as 4-digit string (e.g. "2024"). Optional.
get_unemployment

Get the US civilian unemployment rate over time (BLS series LNS14000000). Returns year, month, and rate for each period.

start_year optional string Start year as 4-digit string (e.g. "2020"). Optional.
end_year optional string End year as 4-digit string (e.g. "2024"). Optional.
get_cpi

Get the US Consumer Price Index for All Urban Consumers (BLS series CUUR0000SA0). Returns year, month, and index value.

start_year optional string Start year as 4-digit string (e.g. "2020"). Optional.
end_year optional string End year as 4-digit string (e.g. "2024"). Optional.
get_employment_by_industry

Get US non-farm payroll employment figures by industry. Options: "total_nonfarm", "manufacturing", "construction", "retail", "financial", "government". Returns employment in thousands.

industry optional string Industry to retrieve. One of: "total_nonfarm", "manufacturing", "construction", "retail", "financial", "government".
start_year optional string Start year as 4-digit string. Optional.
end_year optional string End year as 4-digit string. Optional.

Patents

live

Search US patents by keyword, retrieve patent details, and look up inventors via PatentsView

Reference 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-patents": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/patents/mcp"
      ]
    }
  }
}
search_patents requires: query

Search US patents by keyword. Matches against patent abstracts. Returns patent number, title, date, inventors, and assignee organization.

query required string Keyword or phrase to search in patent abstracts
per_page optional number Number of results to return (default 10, max 25)
get_patent requires: number

Get full details for a specific US patent by patent number. Returns title, abstract, date, type, inventors, and assignee.

number required string Patent number (e.g. "7654321")
search_inventors requires: query

Search US patent inventors by last name. Returns inventor name, location, and associated patent numbers.

query required string Inventor last name to search for
per_page optional number Number of results to return (default 10, max 25)

Upcoming and past rocket launches, full mission details, and searchable launch history from Launch Library 2

Science 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-launches": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/launches/mcp"
      ]
    }
  }
}
get_upcoming_launches

Get upcoming rocket launches. Returns name, net launch time, status, launch pad, rocket name, and mission description.

limit optional number Number of launches to return (default 10)
get_past_launches

Get past rocket launches. Returns name, net launch time, status, launch pad, rocket name, and mission description.

limit optional number Number of launches to return (default 10)
get_launch requires: id

Get full details for a specific launch by its Launch Library 2 ID. Returns name, net time, status, pad, rocket, mission, orbit info, and video URLs.

id required string Launch Library 2 launch UUID (e.g. "a6ce038e-4d89-4265-b47f-1c6ee5863f84")
search_launches requires: query

Search launches by keyword (rocket name, mission name, agency, etc). Returns matching launches with name, net launch time, status, pad, rocket, and mission description.

query required string Search keyword (e.g. "Falcon 9", "Artemis", "ISS")
limit optional number Number of results to return (default 10)

Browse and search free-to-play games by platform, genre, and tags from FreeToGame

Games 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-videogames": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/videogames/mcp"
      ]
    }
  }
}
list_games

List free-to-play games. Optionally filter by platform and category, and sort results. Returns title, short description, genre, platform, publisher, release date, and thumbnail.

platform optional string Platform filter: "pc", "browser", or "all" (default "all")
category optional string Genre/category filter, e.g. "mmorpg", "shooter", "strategy", "moba", "racing", "sports"
sort_by optional string Sort order: "release-date", "popularity", "alphabetical", or "relevance"
get_game requires: id

Get full details for a free-to-play game by its FreeToGame ID. Returns title, description, genre, platform, publisher, developer, release date, screenshots, and minimum system requirements.

id required number FreeToGame game ID (e.g. 452 for "Valorant")
filter_games requires: tag

Filter free-to-play games by tag (dot-separated combination of attributes). Returns matching games with title, short description, genre, platform, publisher, release date, and thumbnail.

tag required string Dot-separated tag filter, e.g. "3d.mmorpg.fantasy", "shooter.pvp", "browser.strategy"
platform optional string Optional platform filter: "pc" or "browser"

Star Wars

live

Explore Star Wars universe data — characters, planets, starships, and films from SWAPI

Entertainment 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-swapi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/swapi/mcp"
      ]
    }
  }
}
search_people requires: query

Search Star Wars characters by name. Returns name, physical attributes, birth year, gender, and homeworld URL.

query required string Character name to search for (e.g., "Luke")
get_planet requires: id

Get a Star Wars planet by its numeric ID. Returns name, climate, terrain, population, and orbital data.

id required number Planet ID (e.g., 1 for Tatooine)
get_starship requires: id

Get a Star Wars starship by its numeric ID. Returns name, model, manufacturer, crew capacity, and hyperdrive rating.

id required number Starship ID (e.g., 9 for the Death Star)
get_film requires: id

Get a Star Wars film by its numeric ID. Returns title, episode number, director, producer, release date, and opening crawl.

id required number Film ID (e.g., 1 for A New Hope)

Search and browse anime, manga, and characters via the Jikan MyAnimeList API

Entertainment 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-jikan": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/jikan/mcp"
      ]
    }
  }
}
search_anime requires: query

Search anime by title using MyAnimeList data. Returns title, score, type, episode count, status, synopsis, and genres.

query required string Anime title to search for (e.g., "Fullmetal Alchemist")
get_anime requires: id

Get full details for a specific anime by its MyAnimeList ID. Includes score, synopsis, genres, studios, episodes, and more.

id required number MyAnimeList anime ID (e.g., 5114 for Fullmetal Alchemist: Brotherhood)
top_anime

Get the top-ranked anime from MyAnimeList, optionally filtered by type (tv, movie, ova, special, ona, music).

type optional string Filter by anime type: tv, movie, ova, special, ona, music. Omit for all types.
search_characters requires: query

Search anime and manga characters by name. Returns name, nicknames, favorites count, and a brief biography.

query required string Character name to search for (e.g., "Naruto")

Crossref

live

Search and retrieve academic paper metadata — DOIs, authors, citations, and journals via Crossref

Science 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-crossref": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/crossref/mcp"
      ]
    }
  }
}
search_works requires: query

Search academic works (papers, books, datasets) in the Crossref index by keyword. Returns title, authors, journal, DOI, and citation count.

query required string Search query (e.g., "climate change machine learning")
limit optional number Number of results to return (1-100, default 10)
get_work requires: doi

Get full metadata for a specific academic work by its DOI. Returns title, authors, abstract, journal, publisher, citation count, and subjects.

doi required string DOI of the work (e.g., "10.1038/nature12373")
get_journal requires: issn

Get the 5 most recent works published in a journal by its ISSN. Returns title, authors, DOI, and publication date.

issn required string Journal ISSN (e.g., "1476-4687" for Nature)

OpenAlex

live

Search scholarly works, authors, institutions, and academic concepts via the OpenAlex API

Science 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openalex": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openalex/mcp"
      ]
    }
  }
}
search_works requires: query

Search scholarly works (papers, books, datasets) in the OpenAlex index. Returns title, authors, journal, year, citation count, and abstract.

query required string Search query (e.g., "transformer neural networks")
limit optional number Number of results to return (1-25, default 10)
search_authors requires: query

Search researchers and authors by name in OpenAlex. Returns display name, ORCID, institution, works count, and citation count.

query required string Author name to search for (e.g., "Yoshua Bengio")
limit optional number Number of results to return (1-25, default 10)
search_institutions requires: query

Search academic institutions (universities, research labs) by name in OpenAlex. Returns name, country, type, works count, and top concepts.

query required string Institution name to search for (e.g., "MIT")
limit optional number Number of results to return (1-25, default 10)
get_concept requires: query

Look up an academic concept or field of study by name. Returns description, works count, related concepts, and ancestor concepts in the hierarchy.

query required string Concept name to look up (e.g., "deep learning")

PubMed

live

Search biomedical literature, fetch abstracts, and retrieve article metadata via NCBI PubMed

Science 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pubmed": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pubmed/mcp"
      ]
    }
  }
}
search_pubmed requires: query

Search the PubMed biomedical literature database by keyword, author, or MeSH term. Returns a list of PubMed IDs that can be used with get_summary or get_abstract.

query required string Search query (e.g., "CRISPR cancer therapy", "Smith J[Author]", "COVID-19[MeSH]")
limit optional number Number of results to return (1-100, default 10)
get_summary requires: ids

Get metadata summaries for one or more PubMed articles by their PubMed IDs. Returns title, authors, journal, publication date, and DOI.

ids required string Comma-separated PubMed IDs (e.g., "33579999,34567890")
get_abstract requires: id

Get the full abstract text for a single PubMed article by its PubMed ID. Returns structured abstract with section labels when available.

id required string A single PubMed ID (e.g., "33579999")

Search species, retrieve taxonomic data, and browse occurrence records from the Global Biodiversity Information Facility

Science 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gbif": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gbif/mcp"
      ]
    }
  }
}
search_species requires: query

Search GBIF species backbone by name or keyword. Returns matched taxa with rank, status, and classification.

query required string Species name or keyword (e.g., "Homo sapiens", "oak")
limit optional number Maximum results to return (1-100, default 20)
get_species requires: key

Get full taxonomic details for a GBIF species by its integer taxon key. Use search_species first to find the key.

key required number GBIF taxon key (integer)
get_occurrences requires: key

Retrieve georeferenced occurrence records for a taxon. Optionally filter by ISO 3166-1 alpha-2 country code.

key required number GBIF taxon key (integer)
limit optional number Maximum records to return (1-300, default 20)
country optional string ISO 3166-1 alpha-2 country code to filter occurrences (e.g., "US", "DE")

USGS Water

live

Real-time streamflow, gage height, and daily water data from USGS National Water Information System

Science 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-usgswater": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/usgswater/mcp"
      ]
    }
  }
}
get_current requires: site_id

Get current instantaneous streamflow (discharge, cfs) and gage height (ft) for a USGS monitoring site.

site_id required string USGS site number (e.g., "01646500" for Potomac River at Little Falls, MD)
search_sites requires: state

Find active USGS stream-gage sites in a US state that have real-time instantaneous data.

state required string Two-letter US state abbreviation (e.g., "VA", "CA", "TX")
get_daily requires: site_id, start, end

Get daily mean streamflow values for a USGS site over a date range. Dates must be in YYYY-MM-DD format.

site_id required string USGS site number
start required string Start date in YYYY-MM-DD format
end required string End date in YYYY-MM-DD format

Search the Internet Archive, retrieve item metadata, and check Wayback Machine snapshots

Reference 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-archive": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/archive/mcp"
      ]
    }
  }
}
search requires: query

Search the Internet Archive for texts, audio, video, software, and other items. Supports Lucene query syntax.

query required string Search query (e.g., "subject:astronomy", "creator:NASA", "moon landing")
limit optional number Number of results to return (1-100, default 20)
get_metadata requires: id

Retrieve full metadata for an Internet Archive item by its identifier (the unique ID in the archive.org URL).

id required string Archive.org item identifier (e.g., "principleofrelat00eins", "ApolloMissionsMoonLandings")
wayback_check requires: url

Check whether a URL has ever been archived in the Wayback Machine and retrieve the closest available snapshot.

url required string The URL to look up (e.g., "https://example.com/some-page")

Decode VINs, browse vehicle makes, and look up models via the NHTSA vehicle product information catalog

Vehicles 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nhtsa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nhtsa/mcp"
      ]
    }
  }
}
decode_vin requires: vin

Decode a 17-character Vehicle Identification Number (VIN) to get make, model, year, body style, engine, and other attributes.

vin required string 17-character VIN (e.g., "1HGBH41JXMN109186")
get_makes

Retrieve all vehicle makes (brands) registered with NHTSA.

get_models requires: make, year

Get all vehicle models available for a specific make and model year.

make required string Vehicle make name (e.g., "Toyota", "Ford", "BMW")
year required number Model year (e.g., 2022)

Simplify, differentiate, integrate, and factor mathematical expressions via the Newton API

Math 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-newton": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/newton/mcp"
      ]
    }
  }
}
simplify requires: expression

Simplify a mathematical expression (e.g., "2^2+2(2)" → "8"). Supports standard algebraic notation.

expression required string Mathematical expression to simplify (e.g., "2^2+2(2)", "x^2+2x+1")
derive requires: expression

Compute the derivative of a mathematical expression with respect to x (e.g., "x^2" → "2 x")

expression required string Expression to differentiate (e.g., "x^2", "sin(x)", "x^3+2x^2+x")
integrate requires: expression

Compute the indefinite integral of a mathematical expression with respect to x (e.g., "x^2" → "(1/3)x^3")

expression required string Expression to integrate (e.g., "x^2", "cos(x)", "x^3+x")
factor requires: expression

Factor a polynomial expression (e.g., "x^2-1" → "(x-1)(x+1)", "x^2+3x+2" → "(x+1)(x+2)")

expression required string Polynomial expression to factor (e.g., "x^2-1", "x^2+3x+2")

UK Police

live

Query street-level crime data, police forces, and crime outcomes from the UK Police open data API

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ukpolice": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ukpolice/mcp"
      ]
    }
  }
}
get_crimes requires: lat, lng

Get street-level crimes near a latitude/longitude for a given month. Returns crime category, location, and outcome status.

lat required number Latitude of the location
lng required number Longitude of the location
date optional string Month to query in YYYY-MM format (e.g. "2024-01"). Defaults to latest available.
get_forces

List all police forces in England, Wales, and Northern Ireland. Returns force ID and name.

get_outcomes requires: lat, lng

Get outcomes for crimes at a location for a given month. Returns outcome category and date for each crime.

lat required number Latitude of the location
lng required number Longitude of the location
date optional string Month to query in YYYY-MM format (e.g. "2024-01"). Defaults to latest available.

Search CVE vulnerabilities, fetch CVE details, and browse recent disclosures from the NIST National Vulnerability Database

Security 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nvd": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nvd/mcp"
      ]
    }
  }
}
search_cves requires: query

Search CVE vulnerabilities by keyword. Returns CVE ID, description, severity, and CVSS score.

query required string Keyword(s) to search in CVE descriptions
limit optional number Maximum number of results to return (default 10, max 2000)
get_cve requires: cve_id

Fetch a specific CVE by its ID (e.g. "CVE-2021-44228"). Returns full details including description, severity, and affected products.

cve_id required string CVE identifier, e.g. "CVE-2021-44228"
recent_cves requires: start, end

Fetch CVEs published within a date range. Dates must be ISO 8601 format with timezone (e.g. "2024-01-01T00:00:00.000Z").

start required string Start date in ISO 8601 format (e.g. "2024-01-01T00:00:00.000Z")
end required string End date in ISO 8601 format (e.g. "2024-01-31T23:59:59.000Z")
limit optional number Maximum number of results to return (default 10, max 2000)

Query Wikipedia pageview statistics — article views, top articles, and project-wide traffic via the Wikimedia API

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wikiviews": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wikiviews/mcp"
      ]
    }
  }
}
get_article_views requires: title, start, end

Get daily pageview counts for a specific Wikipedia article over a date range. Dates must be in YYYYMMDD format.

title required string Wikipedia article title, URL-encoded if needed (e.g. "Albert_Einstein")
start required string Start date in YYYYMMDD format (e.g. "20240101")
end required string End date in YYYYMMDD format (e.g. "20240131")
get_top_articles requires: year, month, day

Get the most viewed Wikipedia articles for a specific day. Returns up to 1000 articles ranked by view count.

year required string Year as 4-digit string (e.g. "2024")
month required string Month as zero-padded 2-digit string (e.g. "01")
day required string Day as zero-padded 2-digit string (e.g. "15")
get_project_views requires: start, end

Get aggregate daily pageview totals for all of English Wikipedia over a date range. Dates must be in YYYYMMDD format.

start required string Start date in YYYYMMDD format (e.g. "20240101")
end required string End date in YYYYMMDD format (e.g. "20240131")

Space News

live

Fetch the latest spaceflight news articles and blog posts from the Spaceflight News API

Space 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-spacenews": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/spacenews/mcp"
      ]
    }
  }
}
get_articles

Fetch the latest spaceflight news articles sorted by publication date. Returns title, summary, URL, image, and source.

limit optional number Number of articles to return (default 10, max 100)
search_articles requires: query

Search spaceflight news articles by keyword. Returns matching articles with title, summary, URL, and publication date.

query required string Search query (e.g. "SpaceX Starship launch")
limit optional number Number of results to return (default 10, max 100)
get_blogs

Fetch the latest spaceflight blog posts sorted by publication date. Returns title, summary, URL, image, and source.

limit optional number Number of blog posts to return (default 10, max 100)

Bible

live

Fetch Bible verses, passages in multiple translations, and random verses via the Bible API

Reference 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bible": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bible/mcp"
      ]
    }
  }
}
get_verse requires: reference

Fetch a specific Bible verse or verse range by reference (e.g. "john 3:16", "romans 8:28", "psalm 23:1-6"). Returns the verse text in the World English Bible (WEB) translation.

reference required string Bible reference string (e.g. "john 3:16", "genesis 1:1-3", "psalm 23"). Spaces will be encoded automatically.
get_passage requires: reference, translation

Fetch a Bible passage with a specified translation. Supported translations: web (World English Bible), kjv (King James Version), oeb-us, bbe, webbe, cherokee, dra.

reference required string Bible reference string (e.g. "john 3:16", "genesis 1:1-5")
translation required string Translation code: "web" (default), "kjv", "oeb-us", "bbe", "webbe", "cherokee", "dra"
random_verse

Fetch a random Bible verse. Returns the reference, text, and translation.


Search artworks, get artwork and artist details, and browse exhibitions from the Art Institute of Chicago

Art 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-artic": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/artic/mcp"
      ]
    }
  }
}
search_artworks requires: query

Search the Art Institute of Chicago collection by keyword. Returns a list of artworks with title, artist, date, medium, and image ID.

query required string Search query (e.g., "monet water lilies")
limit optional number Number of results to return (1-100, default 10)
get_artwork requires: id

Get full details for a single artwork by its numeric ID. Returns title, artist, date, medium, dimensions, credit line, description, and image ID.

id required number ARTIC artwork ID (e.g., 27992)
get_artist requires: id

Get an artist record by numeric ID. Returns name, birth/death dates, description, and a list of artwork IDs.

id required number ARTIC artist ID
get_exhibitions

List current and recent exhibitions at the Art Institute of Chicago. Returns title, short description, and status for each exhibition.

limit optional number Number of exhibitions to return (1-100, default 10)

Iconify

live

Search icons, retrieve SVG data, and list collections from the Iconify open-source icon library

Design 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-iconify": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/iconify/mcp"
      ]
    }
  }
}
search_icons requires: query

Search for icons by keyword across all Iconify collections. Returns icon names in "prefix:name" format (e.g., "mdi:home").

query required string Search keyword (e.g., "home", "arrow", "user")
limit optional number Maximum number of results (1-999, default 32)
get_icons requires: prefix, icons

Retrieve SVG body data for one or more icons in a specific collection. Returns SVG body, width, and height for each icon.

prefix required string Collection prefix (e.g., "mdi", "fa", "heroicons", "lucide")
icons required string Comma-separated icon names within the collection (e.g., "home,arrow-left,user")
list_collections

List all available icon collections in Iconify. Returns collection prefix, name, total icon count, author, license, and category.


Math.js

live

Evaluate mathematical expressions and convert units using the mathjs.org API

Math 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mathjs": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mathjs/mcp"
      ]
    }
  }
}
evaluate requires: expression

Evaluate a mathematical expression. Supports arithmetic, algebra, trigonometry, statistics, and more. Returns the computed result as a string.

expression required string Mathematical expression to evaluate (e.g., "2 + 3 * 4", "sqrt(16)", "sin(pi/2)", "det([1,2;3,4])")
convert_units requires: value, from, to

Convert a value from one unit to another using mathjs unit syntax. Returns the converted value as a string.

value required number Numeric value to convert (e.g., 5)
from required string Source unit (e.g., "inches", "kg", "celsius", "mph")
to required string Target unit (e.g., "cm", "lbs", "fahrenheit", "km/h")

Get sunrise, sunset, dawn, dusk, solar noon, and golden hour times for any location and date

Utilities 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sunrisesunset": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sunrisesunset/mcp"
      ]
    }
  }
}
get_times requires: lat, lng

Get today's sunrise, sunset, dawn, dusk, solar noon, and golden hour times for a location.

lat required number Latitude of the location (e.g., 40.7128)
lng required number Longitude of the location (e.g., -74.0060)
get_times_date requires: lat, lng, date

Get sunrise, sunset, dawn, dusk, solar noon, and golden hour times for a specific date at a location.

lat required number Latitude of the location (e.g., 40.7128)
lng required number Longitude of the location (e.g., -74.0060)
date required string Date in YYYY-MM-DD format (e.g., "2024-06-21")

Chess.com

live

Look up Chess.com player profiles, game stats, monthly game archives, and leaderboards

Games 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-chess": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/chess/mcp"
      ]
    }
  }
}
get_player requires: username

Get a Chess.com player's public profile including name, title, followers, country, join date, and last online time.

username required string Chess.com username (case-insensitive, e.g., "hikaru", "magnuscarlsen")
get_stats requires: username

Get a player's game statistics including current rating, best rating, and win/loss/draw record for daily, rapid, blitz, and bullet formats.

username required string Chess.com username
get_games requires: username, year, month

Get a player's completed games for a specific month. Returns game URLs, time controls, results, and player ratings.

username required string Chess.com username
year required number Year (e.g., 2024)
month required number Month as a number (1-12)
get_leaderboards

Get the top-ranked Chess.com players across game formats including daily, rapid, blitz, and bullet.


Quotes

live

Citation-grade quote API with provenance and attribution checking. Curated public-domain corpus (Shakespeare, Twain, Wilde) plus full-text search across plays and novels — every quote returns work, year, speaker, and location (act/scene/chapter).

QuotesReferenceResearch 9 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-quotes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/quotes/mcp"
      ]
    }
  }
}
random_quote

Return a random quote from the corpus, optionally filtered by author, fame, verification status, or tag. Each result includes citation: work, year, speaker, and source URL.

author_id optional string
famous_only optional boolean
verified_only optional boolean
tag optional string
search_quotes requires: query

Search quotes by substring across canonical text and known popular paraphrases.

query required string
author_id optional string
limit optional number
check_attribution requires: text

Check whether a quote is genuinely attributed to a claimed author. Catches commonly misattributed quotes.

text required string
claimed_author optional string
quote_by_location requires: author_id, work_title

Look up quotes from a specific work and location (act/scene for plays, chapter for novels).

author_id required string
work_title required string
act optional number
scene optional number
chapter optional number
list_authors

List authors available in the curated quote corpus with their work counts.

list_full_text_works

List complete works available for full-text browsing (plays by act/scene, novels by chapter).

get_scene requires: author_id, work_slug, act, scene

Fetch a single scene from a play (e.g., Hamlet act 3, scene 1). Returns all speeches in order with speaker labels.

author_id required string
work_slug required string
act required number
scene required number
get_act requires: author_id, work_slug, act

Fetch all scenes from one act of a play.

author_id required string
work_slug required string
act required number
get_chapter requires: author_id, work_slug, chapter

Fetch a chapter from a novel (e.g., Huck Finn chapter 14). Returns all paragraphs in order.

author_id required string
work_slug required string
chapter required number

ZenQuotes

live

Fetch random inspirational quotes, the quote of the day, and batches of quotes from ZenQuotes

Quotes 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-zenquotes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/zenquotes/mcp"
      ]
    }
  }
}
random_quote

Get a single random inspirational quote.

today_quote

Get the quote of the day from ZenQuotes. Returns the same quote for all requests within a given day.

list_quotes

Get a batch of 50 random inspirational quotes.


Get random advice, search advice by keyword, and fetch specific advice slips by ID

Quotes 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-advice": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/advice/mcp"
      ]
    }
  }
}
random_advice

Get a random piece of advice from the Advice Slip API.

search_advice requires: query

Search for advice slips containing a specific keyword or phrase.

query required string Keyword or phrase to search for within advice text.
get_advice requires: id

Get a specific advice slip by its numeric ID.

id required number The numeric ID of the advice slip to retrieve.

Retrieve the top 100 meme templates with names, images, and text box counts from Imgflip

Entertainment 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-imgflip": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/imgflip/mcp"
      ]
    }
  }
}
get_memes

Get the top 100 most popular meme templates from Imgflip, including name, image URL, dimensions, and text box count.


Fruityvice

live

Look up nutritional data for fruits — calories, sugar, fat, carbs, and protein via the Fruityvice API

Food 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fruityvice": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fruityvice/mcp"
      ]
    }
  }
}
get_fruit requires: name

Get detailed nutritional information for a specific fruit by name.

name required string The name of the fruit (e.g., "banana", "apple", "mango").
list_fruits

List all available fruits with their complete nutritional data.

get_by_nutrition requires: nutrient, min, max

Find fruits within a nutritional range for a specific nutrient. Useful for filtering fruits by calories, sugar, fat, carbohydrates, or protein.

nutrient required string The nutrient to filter by. One of: calories, sugar, fat, carbohydrates, protein.
min required number Minimum value for the nutrient (inclusive).
max required number Maximum value for the nutrient (inclusive).

Search Swiss public transport stations, get connections, and view live departure boards via Transport Open Data

Travel 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-swisstransport": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/swisstransport/mcp"
      ]
    }
  }
}
search_stations requires: query

Search for Swiss public transport stations (train, bus, tram) by name query.

query required string Station name to search for (e.g., "Zurich HB", "Bern", "Geneva").
get_connections requires: from, to

Get public transport connections between two Swiss locations. Returns up to the requested number of next departures.

from required string Departure station name or ID.
to required string Arrival station name or ID.
limit optional number Maximum number of connections to return. Defaults to 4.
get_stationboard requires: station

Get the live departure board for a Swiss public transport station.

station required string Station name or ID to get the departure board for.
limit optional number Maximum number of departures to return. Defaults to 10.

Agify

live

Predict a person's age from their first name using global and country-specific data from agify.io

Demographics 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-agify": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/agify/mcp"
      ]
    }
  }
}
predict_age requires: name

Predict the most likely age of a person based on their first name, using global data from agify.io.

name required string First name to predict age for.
predict_age_country requires: name, country_code

Predict the most likely age of a person based on their first name, calibrated to a specific country.

name required string First name to predict age for.
country_code required string ISO 3166-1 alpha-2 country code (e.g. "US", "GB", "DE") to localize the prediction.

Genderize

live

Predict the gender of a first name with probability scores using global and country-specific data from genderize.io

Demographics 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-genderize": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/genderize/mcp"
      ]
    }
  }
}
predict_gender requires: name

Predict the most likely gender of a person based on their first name, using global data from genderize.io. Returns gender ("male" or "female"), probability (0–1), and sample size.

name required string First name to predict gender for.
predict_gender_country requires: name, country_code

Predict the most likely gender of a person based on their first name, calibrated to a specific country.

name required string First name to predict gender for.
country_code required string ISO 3166-1 alpha-2 country code (e.g. "US", "GB", "DE") to localize the prediction.

Predict the nationality of a first name with ranked country probabilities, including batch lookups via nationalize.io

Demographics 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nationalize": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nationalize/mcp"
      ]
    }
  }
}
predict_nationality requires: name

Predict the most likely nationalities for a given first name, ranked by probability. Returns up to 5 country codes with probability scores.

name required string First name to predict nationality for.
batch_predict requires: names

Predict nationalities for multiple first names in a single request (up to 10 names). Returns ranked nationality probabilities for each name.

names required array Array of first names to predict nationality for (maximum 10).

Fetch Two-Line Element sets for satellites, search by name, and list recently launched satellites

Space 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tle": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tle/mcp"
      ]
    }
  }
}
get_tle requires: norad_id

Fetch the Two-Line Element (TLE) set for a specific satellite by its NORAD catalog ID. Returns the satellite name, epoch date, and both TLE lines.

norad_id required number NORAD catalog number for the satellite (e.g. 25544 for the ISS, 20580 for Hubble Space Telescope).
search_satellites requires: query

Search for satellites by name or keyword. Returns matching satellites with their NORAD IDs and TLE data.

query required string Name or keyword to search for (e.g. "ISS", "Starlink", "GPS").
limit optional number Maximum number of results to return. Defaults to 10.
list_recent

List the most recently launched or updated satellites, sorted by epoch date descending.

limit optional number Number of satellites to return. Defaults to 10.

Browse monsters, weapons, armor, and skills from Monster Hunter World via the MHW database API

Games 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mhw": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mhw/mcp"
      ]
    }
  }
}
get_monsters

List monsters from Monster Hunter World, including their type, species, elements, ailments, and weaknesses.

limit optional number Maximum number of monsters to return. Defaults to 20.
get_weapons

List weapons from Monster Hunter World. Optionally filter by weapon type to narrow results.

type optional string Filter by weapon type. One of: great-sword, sword-and-shield, dual-blades, long-sword, hammer, hunting-horn, lance, gunlance, switch-axe, charge-blade, insect-glaive, light-bowgun, heavy-bowgun, bow. Omit to return all types.
limit optional number Maximum number of weapons to return. Defaults to 20.
get_armor

List armor pieces from Monster Hunter World, including their type, rank, defense, resistances, and slots.

limit optional number Maximum number of armor pieces to return. Defaults to 20.
get_skills

List skills from Monster Hunter World, including their descriptions and rank-level details.

limit optional number Maximum number of skills to return. Defaults to 20.

Color API

live

Identify, convert, and generate color schemes using thecolorapi.com

Design 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-colorapi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/colorapi/mcp"
      ]
    }
  }
}
identify_color requires: hex

Identify a color by its hex value. Returns the color name, all format representations (RGB, HSL, HSV, CMYK), and contrast info.

hex required string Hex color value without the # prefix (e.g. "FF5733").
generate_scheme requires: hex

Generate a color scheme from a seed hex color. Returns a set of harmonious colors based on the chosen mode.

hex required string Seed hex color value without the # prefix (e.g. "FF5733").
mode optional string Color scheme mode. One of: monochrome, analogic, complement, triad, quad. Defaults to "monochrome".
count optional number Number of colors to return (1-10, default 5).
convert_color requires: r, g, b

Convert an RGB color to all other color formats (hex, HSL, HSV, CMYK) and get its closest color name.

r required number Red channel (0-255).
g required number Green channel (0-255).
b required number Blue channel (0-255).

QR Code

live

Generate and decode QR codes via api.qrserver.com

Utilities 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-qrcode": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/qrcode/mcp"
      ]
    }
  }
}
create_qr requires: data

Generate a QR code for any text or URL. Returns the image URL — no image is fetched. The URL can be embedded directly in an <img> tag or downloaded.

data required string The text or URL to encode in the QR code.
size optional number Width and height of the QR code image in pixels (default 200).
read_qr requires: url

Decode a QR code from a publicly accessible image URL. Returns the decoded text.

url required string Publicly accessible URL of the QR code image to decode.

Historical events, births, and deaths for any date via byabbe.se

History 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-onthisday": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/onthisday/mcp"
      ]
    }
  }
}
get_events requires: month, day

Get a list of historical events that took place on a specific month and day across all years.

month required number Month as a number (1-12).
day required number Day of the month (1-31).
get_births requires: month, day

Get a list of notable people born on a specific month and day across all years.

month required number Month as a number (1-12).
day required number Day of the month (1-31).
get_deaths requires: month, day

Get a list of notable people who died on a specific month and day across all years.

month required number Month as a number (1-12).
day required number Day of the month (1-31).

Generate realistic random user profiles with names, addresses, and photos via randomuser.me

Utilities 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-randomuser": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/randomuser/mcp"
      ]
    }
  }
}
generate_users

Generate one or more random user profiles with realistic names, addresses, emails, and photos. Optionally filter by nationality.

count optional number Number of users to generate (default 1, max 100).
nationality optional string Comma-separated nationality codes to filter by (e.g. "us,gb,au"). Supported: AU, BR, CA, CH, DE, DK, ES, FI, FR, GB, IE, IN, IR, MX, NL, NO, NZ, RS, TR, UA, US.
generate_by_gender requires: gender

Generate random user profiles filtered to a specific gender.

gender required string Gender to filter by. One of: male, female.
count optional number Number of users to generate (default 1, max 100).

Marine

live

Ocean wave forecasts and current conditions via the Open-Meteo Marine API

Ocean 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-marine": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/marine/mcp"
      ]
    }
  }
}
get_wave_forecast requires: latitude, longitude

Get a multi-day daily wave forecast for a coastal location. Returns maximum wave height, wave period, and dominant wave direction per day.

latitude required number Latitude of the location.
longitude required number Longitude of the location.
days optional number Number of forecast days (1-7, default 7).
get_current_waves requires: latitude, longitude

Get current wave conditions for a coastal location. Returns wave height, period, and direction right now.

latitude required number Latitude of the location.
longitude required number Longitude of the location.

Current air quality conditions and hourly forecasts from the Open-Meteo Air Quality API

Environment 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-airquality": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/airquality/mcp"
      ]
    }
  }
}
get_air_quality requires: latitude, longitude

Get current air quality conditions for a location. Returns US AQI, PM2.5, PM10, carbon monoxide, nitrogen dioxide, and ozone levels.

latitude required number Latitude of the location.
longitude required number Longitude of the location.
get_forecast requires: latitude, longitude

Get an hourly air quality forecast for a location. Returns US AQI, PM2.5, and PM10 per hour.

latitude required number Latitude of the location.
longitude required number Longitude of the location.
days optional number Number of forecast days (1-7, default 3).

Nominatim

live

Forward and reverse geocoding using OpenStreetMap Nominatim

Geography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nominatim": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nominatim/mcp"
      ]
    }
  }
}
search_address requires: query

Forward geocode a free-form address or place name using OpenStreetMap Nominatim. Returns matching places with coordinates.

query required string Free-form address or place name to search for (e.g. "Eiffel Tower, Paris").
limit optional number Maximum number of results to return. Defaults to 5, max 50.
reverse_geocode requires: lat, lon

Reverse geocode a latitude/longitude coordinate pair to a human-readable address using OpenStreetMap Nominatim.

lat required number Latitude in decimal degrees (e.g. 48.8584).
lon required number Longitude in decimal degrees (e.g. 2.2945).
lookup requires: ids

Look up one or more OpenStreetMap objects by their OSM IDs (e.g. "N123456,W654321,R111"). Prefix N=node, W=way, R=relation.

ids required string Comma-separated list of OSM IDs with type prefix (e.g. "N123456,W654321"). N=node, W=way, R=relation.

Zippopotam

live

Look up ZIP and postal codes worldwide via Zippopotam.us

Geography 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-zippopotam": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/zippopotam/mcp"
      ]
    }
  }
}
lookup_zipcode requires: country, zipcode

Look up place information (city, state, coordinates) for a ZIP or postal code in a given country.

country required string ISO 3166-1 alpha-2 country code (e.g. "us", "gb", "de").
zipcode required string ZIP or postal code to look up (e.g. "90210").
lookup_city requires: country, state, city

Get all postal codes for a city in a given country and state/province.

country required string ISO 3166-1 alpha-2 country code (e.g. "us", "gb").
state required string State or province abbreviation (e.g. "ca" for California).
city required string City name (e.g. "beverly+hills" or "beverly hills").

Postcodes

live

Look up, validate, and explore UK postcodes via postcodes.io

Geography 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-postcodes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/postcodes/mcp"
      ]
    }
  }
}
lookup_postcode requires: postcode

Get full geographic and administrative details for a UK postcode.

postcode required string UK postcode to look up (e.g. "SW1A 1AA" or "SW1A1AA").
nearest_postcodes requires: postcode

Find the nearest UK postcodes to a given postcode.

postcode required string UK postcode to find neighbours for (e.g. "SW1A 1AA").
validate_postcode requires: postcode

Check whether a UK postcode is valid.

postcode required string UK postcode to validate (e.g. "SW1A 1AA").
random_postcode

Get a random valid UK postcode with full geographic and administrative details.


D&D 5e

live

Browse spells, monsters, and classes from the D&D 5th Edition SRD API

Games 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dnd5e": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dnd5e/mcp"
      ]
    }
  }
}
get_spell requires: index

Get full details for a D&D 5e spell by its index name (e.g. "fireball", "magic-missile", "cure-wounds").

index required string Spell index name in kebab-case (e.g. "fireball", "magic-missile").
get_monster requires: index

Get full details for a D&D 5e monster by its index name (e.g. "aboleth", "dragon-red-adult", "goblin").

index required string Monster index name in kebab-case (e.g. "goblin", "dragon-red-adult").
get_class requires: index

Get details for a D&D 5e character class by its index name (e.g. "barbarian", "wizard", "rogue").

index required string Class index name in lowercase (e.g. "wizard", "fighter", "cleric").
list_spells

List all available D&D 5e spells with their index names.


Create, shuffle, and draw from virtual playing card decks via deckofcardsapi.com

Games 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-deckofcards": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/deckofcards/mcp"
      ]
    }
  }
}
new_deck

Create and shuffle a new deck (or multiple decks) of playing cards. Returns a deck_id for subsequent draws.

count optional number Number of standard 52-card decks to combine and shuffle. Defaults to 1.
draw_cards requires: deck_id

Draw one or more cards from an existing deck. Requires the deck_id returned by new_deck.

deck_id required string The deck ID returned by new_deck (e.g. "3p40paa87x90").
count optional number Number of cards to draw. Defaults to 1.
shuffle_deck requires: deck_id

Shuffle (or re-shuffle) an existing deck, returning all drawn cards back into it.

deck_id required string The deck ID to shuffle (e.g. "3p40paa87x90").

Cat Facts

live

Random cat facts and breed information via catfact.ninja

Animals 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-catfacts": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/catfacts/mcp"
      ]
    }
  }
}
get_fact

Get a single random cat fact.

list_breeds

List cat breeds with details such as country, origin, coat, and pattern.

limit optional number Number of breeds to return. Defaults to 10.
get_facts

Get multiple random cat facts.

limit optional number Number of facts to return. Defaults to 5.

Dog CEO

live

Random dog images by breed from the Dog CEO API

Animals 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dogceo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dogceo/mcp"
      ]
    }
  }
}
random_image

Get a random dog image URL from any breed.

list_breeds

List all dog breeds and their sub-breeds.

breed_images requires: breed

Get multiple random dog images for a specific breed.

breed required string The breed name (e.g. "hound", "labrador"). Use list_breeds to see valid values.
count optional number Number of images to return. Defaults to 3.
random_breed_image requires: breed

Get a single random dog image for a specific breed.

breed required string The breed name (e.g. "hound", "labrador"). Use list_breeds to see valid values.

Random Chuck Norris jokes by category via chucknorris.io

Entertainment 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-chucknorris": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/chucknorris/mcp"
      ]
    }
  }
}
random_joke

Get a random Chuck Norris joke.

search_jokes requires: query

Search Chuck Norris jokes by keyword.

query required string Keyword or phrase to search for within joke text.
list_categories

List all available Chuck Norris joke categories.

joke_by_category requires: category

Get a random Chuck Norris joke from a specific category.

category required string Category to fetch a joke from. Use list_categories to see valid values.

Dad Jokes

live

Random and searchable dad jokes via icanhazdadjoke.com

Entertainment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dadjokes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dadjokes/mcp"
      ]
    }
  }
}
random_joke

Get a random dad joke.

search_jokes requires: query

Search dad jokes by a keyword or term.

query required string Term to search for within dad jokes.
limit optional number Maximum number of jokes to return. Defaults to 10.
get_joke requires: id

Get a specific dad joke by its ID.

id required string The ID of the dad joke to retrieve.

Gutendex

live

Search and browse Project Gutenberg books via the Gutendex API

Books 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gutendex": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gutendex/mcp"
      ]
    }
  }
}
search_books requires: query

Search Project Gutenberg books by title or author name.

query required string Title or author name to search for.
get_book requires: id

Get detailed information for a specific Project Gutenberg book by its numeric ID.

id required number The numeric Project Gutenberg book ID.
popular_books

Get the most downloaded / popular books on Project Gutenberg.

books_by_topic requires: topic

Browse Project Gutenberg books by topic or subject keyword.

topic required string Topic or subject keyword to filter books by (e.g. "science", "love", "history").

Wger

live

Browse exercises, muscles, and equipment from the Wger Workout Manager API

Fitness 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wger": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wger/mcp"
      ]
    }
  }
}
list_exercises

List exercises from the wger database (English language only).

limit optional number Number of exercises to return. Defaults to 20.
get_exercise requires: id

Get detailed information for a specific exercise by its numeric ID.

id required number The numeric wger exercise ID.
list_muscles

List all muscles tracked in the wger database.

list_equipment

List all equipment types available in the wger database.


EmojiHub

live

Fetch random emojis or browse by category and group via EmojiHub

Utilities 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-emojihub": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/emojihub/mcp"
      ]
    }
  }
}
random_emoji

Get a random emoji from the EmojiHub API.

get_by_category requires: category

Get all emojis in a given category. Example categories: smileys-and-people, animals-and-nature, food-and-drink, travel-and-places, activities, objects, symbols, flags.

category required string The emoji category slug, e.g. "smileys-and-people", "animals-and-nature", "food-and-drink".
get_by_group requires: group

Get all emojis in a given group. Example groups: face-positive, face-negative, face-neutral, hand-fingers-open, animals-mammal.

group required string The emoji group slug, e.g. "face-positive", "face-negative", "animals-mammal".

Disify

live

Detect disposable and invalid email addresses via Disify

Utilities 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-disify": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/disify/mcp"
      ]
    }
  }
}
validate_email requires: email

Validate an email address to check if it is properly formatted, has valid DNS, is disposable, or is an alias.

email required string The email address to validate.
check_domain requires: domain

Check whether a domain is associated with disposable or temporary email services.

domain required string The domain name to check, e.g. "mailinator.com".

DiceBear

live

Generate deterministic avatar SVGs in various styles via DiceBear v7

Design 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dicebear": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dicebear/mcp"
      ]
    }
  }
}
generate_avatar requires: style, seed

Generate a DiceBear avatar SVG URL for a given style and seed string. Returns the URL that renders the avatar inline.

style required string The avatar style to use. Available styles: adventurer, avataaars, bottts, fun-emoji, identicon, initials, lorelei, micah, miniavs, notionists, open-peeps, personas, pixel-art, thumbs.
seed required string A seed string that determines the avatar appearance. Same seed + style always produces the same avatar.
list_styles

List all available DiceBear avatar styles.


Microlink

live

Extract metadata and take screenshots of any webpage via Microlink

Utilities 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-microlink": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/microlink/mcp"
      ]
    }
  }
}
get_metadata requires: url

Extract metadata from any URL including title, description, image, author, publisher, logo, and more.

url required string The URL to extract metadata from.
take_screenshot requires: url

Take a screenshot of a webpage and return the screenshot image URL.

url required string The URL of the webpage to screenshot.

Flood

live

River discharge and flood forecasts via the Open-Meteo Flood API

Environment 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-flood": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/flood/mcp"
      ]
    }
  }
}
get_river_discharge requires: latitude, longitude

Get daily river discharge forecast (m³/s) for a geographic location using the Open-Meteo Flood API.

latitude required number Latitude of the location in decimal degrees.
longitude required number Longitude of the location in decimal degrees.
forecast_days optional number Number of forecast days to retrieve (1–92). Defaults to 7.
get_flood_forecast requires: latitude, longitude

Get a comprehensive flood forecast including river discharge, mean discharge, and max discharge for a location.

latitude required number Latitude of the location in decimal degrees.
longitude required number Longitude of the location in decimal degrees.
forecast_days optional number Number of forecast days to retrieve (1–92). Defaults to 16.

Climate

live

Long-term climate projections and model comparisons via the Open-Meteo Climate API

Environment 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-climate": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/climate/mcp"
      ]
    }
  }
}
get_climate_projection requires: latitude, longitude, start_date, end_date

Get long-term climate projection data (temperature and precipitation) for a location using the EC_Earth3P_HR high-resolution climate model via the Open-Meteo Climate API. Date range must be between 1950 and 2050.

latitude required number Latitude of the location in decimal degrees.
longitude required number Longitude of the location in decimal degrees.
start_date required string Start date in YYYY-MM-DD format (must be between 1950 and 2050).
end_date required string End date in YYYY-MM-DD format (must be between 1950 and 2050).
compare_models requires: latitude, longitude, start_date, end_date

Compare daily mean temperature projections across three climate models (EC_Earth3P_HR, MPI_ESM1_2_XR, FGOALS_f3_H) for a location and date range.

latitude required number Latitude of the location in decimal degrees.
longitude required number Longitude of the location in decimal degrees.
start_date required string Start date in YYYY-MM-DD format (must be between 1950 and 2050).
end_date required string End date in YYYY-MM-DD format (must be between 1950 and 2050).

Wikifeed

live

Wikipedia's featured articles, most-read pages, picture of the day, and on-this-day history via the Wikimedia Feed API

Reference 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wikifeed": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wikifeed/mcp"
      ]
    }
  }
}
on_this_day requires: month, day

Get historical events, births, deaths, and holidays that occurred on a given month and day across all years.

month required string Two-digit month number (e.g., "01" for January, "12" for December)
day required string Two-digit day number (e.g., "01", "15", "31")
featured_article requires: year, month, day

Get Wikipedia's featured article for a specific date.

year required string Four-digit year (e.g., "2024")
month required string Two-digit month number (e.g., "01", "12")
day required string Two-digit day number (e.g., "01", "15")
most_read requires: year, month, day

Get the most-read Wikipedia articles for a specific date.

year required string Four-digit year (e.g., "2024")
month required string Two-digit month number (e.g., "01", "12")
day required string Two-digit day number (e.g., "01", "15")
picture_of_day requires: year, month, day

Get Wikipedia's picture of the day for a specific date, including title, description, and image URL.

year required string Four-digit year (e.g., "2024")
month required string Two-digit month number (e.g., "01", "12")
day required string Two-digit day number (e.g., "01", "15")

Trivia, math, and date facts about numbers via numbersapi.com

Reference 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-numbersapi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/numbersapi/mcp"
      ]
    }
  }
}
number_fact requires: number

Get an interesting trivia fact about a specific number.

number required number The number to get a fact about (e.g., 42)
date_fact requires: month, day

Get an interesting fact about a specific calendar date.

month required number Month number (1–12)
day required number Day number (1–31)
math_fact requires: number

Get a mathematical fact about a specific number.

number required number The number to get a mathematical fact about (e.g., 1729)
random_fact

Get a trivia fact about a randomly chosen number.


Random and daily useless (but interesting) facts via uselessfacts.jsph.pl

Entertainment 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-uselessfacts": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/uselessfacts/mcp"
      ]
    }
  }
}
random_fact

Get a random useless (but interesting) fact.

today_fact

Get today's useless fact of the day.


Dogs API

live

Dog breeds, facts, and groups via dogapi.dog v2

Animals 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dogsapi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dogsapi/mcp"
      ]
    }
  }
}
list_breeds

Get a paginated list of dog breeds with details including weight, life span, and hypoallergenic status.

page optional number Page number for pagination (default: 1)
get_breed requires: id

Get detailed information about a specific dog breed by its ID.

id required string The breed ID (obtained from list_breeds)
list_facts

Get a list of random dog facts.

limit optional number Number of facts to return (default: 10, max: 100)
get_groups

Get all dog breed groups (e.g., Sporting, Herding, Terrier).


HTTP Cat

live

Cat photos for every HTTP status code via http.cat

Entertainment 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-httpcat": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/httpcat/mcp"
      ]
    }
  }
}
get_status_cat requires: status_code

Get the http.cat image URL for a given HTTP status code. Returns a direct URL to a cat photo illustrating the status code.

status_code required number HTTP status code (e.g., 200, 404, 500)
list_codes

List common HTTP status codes with their descriptions and corresponding http.cat image URLs.


IPInfo

live

IP geolocation and network information via ipinfo.io

Utilities 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ipinfo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ipinfo/mcp"
      ]
    }
  }
}
lookup_ip requires: ip

Get geolocation and network information for a specific IP address. Returns city, region, country, coordinates, org, postal code, and timezone.

ip required string IPv4 or IPv6 address to look up (e.g., "8.8.8.8")
get_my_ip

Get geolocation and network information for the current request's originating IP address.


Live currency exchange rates via open.er-api.com

Finance 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-exchangerate": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/exchangerate/mcp"
      ]
    }
  }
}
get_rates requires: base_currency

Get all exchange rates for a given base currency. Returns a map of currency codes to rates relative to the base.

base_currency required string ISO 4217 currency code to use as the base (e.g., "USD", "EUR", "GBP")
get_pair requires: from, to

Get the exchange rate from one currency to another.

from required string Source currency code (e.g., "USD")
to required string Target currency code (e.g., "JPY")

Lorem

live

Generate lorem ipsum placeholder text and HTML via loripsum.net

Utilities 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-lorem": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/lorem/mcp"
      ]
    }
  }
}
generate_paragraphs requires: count, length

Generate lorem ipsum placeholder text as plain paragraphs. Strips all HTML tags from the response.

count required number Number of paragraphs to generate (1–10)
length required string Length of each paragraph: short, medium, long, or verylong
generate_with_options requires: count, length

Generate lorem ipsum HTML with optional headers, code blocks, unordered lists, and ordered lists.

count required number Number of paragraphs to generate (1–10)
length required string Length of each paragraph
headers optional boolean Include random headers (h1–h6)
code optional boolean Include code blocks
unordered_lists optional boolean Include unordered (bullet) lists
ordered_lists optional boolean Include ordered (numbered) lists

Superhero

live

Browse superhero data including powerstats and biographies via the Superhero API

Entertainment 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-superhero": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/superhero/mcp"
      ]
    }
  }
}
list_all

List all superheroes in the database with their IDs, names, and slugs.

get_hero requires: id

Get full data for a superhero by their numeric ID, including powerstats, biography, appearance, and images.

id required number Numeric superhero ID (1–731)
get_powerstats requires: id

Get power statistics (intelligence, strength, speed, durability, power, combat) for a superhero by ID.

id required number Numeric superhero ID (1–731)
get_biography requires: id

Get biography details (full name, aliases, publisher, first appearance, alignment) for a superhero by ID.

id required number Numeric superhero ID (1–731)

Tarot

live

Tarot card data — draw random cards, search by keyword, and get card meanings

Entertainment 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tarot": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tarot/mcp"
      ]
    }
  }
}
random_card

Draw a single random tarot card

draw_cards requires: count

Draw multiple random tarot cards

count required number Number of cards to draw (1-78)
search_cards requires: query

Search tarot cards by keyword

query required string Search keyword
get_card requires: name_short

Get a specific tarot card by short name

name_short required string Card short name (e.g. ar01)

XKCD

live

XKCD webcomics — get latest, specific, or random comics with title, image, and alt text

Entertainment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-xkcd": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/xkcd/mcp"
      ]
    }
  }
}
get_latest

Get the latest XKCD comic

get_comic requires: number

Get a specific XKCD comic by number

number required number Comic number
random_comic

Get a random XKCD comic


PyPI

live

Browse Python package metadata from the Python Package Index

Development 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pypi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pypi/mcp"
      ]
    }
  }
}
search_packages requires: name

Look up a PyPI package by exact name. Returns the latest version, summary, author, license, and project URLs. Note: PyPI does not expose a keyword search API; use the exact package name.

name required string Exact PyPI package name (e.g., "requests", "numpy")
get_package requires: name

Get full metadata for a PyPI package: latest version, summary, author, license, requires_python, project_urls, and recent release list.

name required string PyPI package name
get_release requires: name, version

Get metadata for a specific version of a PyPI package, including requires_python, upload time, and download URLs.

name required string PyPI package name
version required string Version string (e.g., "2.28.2")

Crates.io

live

Search and browse Rust crates from the crates.io registry

Development 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-crates": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/crates/mcp"
      ]
    }
  }
}
search_crates requires: query

Search crates.io for Rust crates by keyword. Returns name, description, total downloads, newest version, and repository URL.

query required string Search query string
limit optional number Number of results to return (default 10, max 100)
get_crate requires: name

Get metadata for a specific crate: name, description, total downloads, newest version, repository, homepage, and categories.

name required string Exact crate name (e.g., "serde", "tokio")
get_versions requires: name

List all published versions for a crate, ordered newest first. Returns version number, download count, and publish date.

name required string Crate name

Docker Hub

live

Search public Docker Hub images and browse tags and repository metadata

Development 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dockerhub": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dockerhub/mcp"
      ]
    }
  }
}
search_images requires: query

Search Docker Hub for public images. Returns repository name, description, pull count, star count, and whether it is official or automated.

query required string Search query (e.g., "nginx", "postgres")
limit optional number Number of results to return (default 10, max 100)
get_image requires: namespace, name

Get metadata for a Docker Hub repository: pull count, star count, description, last updated, and full description.

namespace required string Repository namespace — use "library" for official images (e.g., "library", "bitnami")
name required string Repository name (e.g., "nginx", "redis")
get_tags requires: namespace, name

List available tags for a Docker Hub image, ordered by last pushed date. Returns tag name, digest, size, and last pushed timestamp.

namespace required string Repository namespace (use "library" for official images)
name required string Repository name
limit optional number Number of tags to return (default 20, max 100)

Search and explore public GitLab projects and issues without authentication

Development 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gitlab-public": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gitlab-public/mcp"
      ]
    }
  }
}
search_projects requires: query

Search public GitLab projects by keyword, ordered by star count. Returns project ID, name, description, stars, forks, open issues count, and web URL.

query required string Search query string
limit optional number Number of results to return (default 10, max 100)
get_project requires: id

Get a public GitLab project by numeric ID or URL-encoded path (e.g., "gitlab-org%2Fgitlab"). Returns full project details including name, description, stars, forks, default branch, topics, and activity dates.

id required string Project numeric ID or URL-encoded path (e.g., "gitlab-org%2Fgitlab")
search_issues requires: query

Search issues across all public GitLab projects. Returns issue title, state, author, labels, project ID, and URL.

query required string Search query for issue titles and descriptions
limit optional number Number of results to return (default 10, max 100)

DEV.to

live

Browse trending and recent articles from the DEV Community developer blog network

Development 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-devto": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/devto/mcp"
      ]
    }
  }
}
get_articles

Fetch trending or recent articles from DEV.to, optionally filtered by tag. Use the "top" parameter to scope to articles trending over the last N days.

tag optional string Filter articles by tag (e.g., "javascript", "python", "webdev")
top optional number Return top articles from the last N days (e.g., 7 for last week)
limit optional number Number of articles to return (default 10, max 30)
search_articles

Browse DEV.to articles filtered by tag with pagination. Returns title, author, tags, reactions, comments count, reading time, and URL.

tag optional string Tag to filter by (e.g., "typescript", "rust", "ai")
page optional number Page number for pagination (default 1)
limit optional number Number of articles per page (default 10, max 30)
get_article requires: id

Fetch a single DEV.to article by its numeric ID. Returns title, author, body markdown, tags, reactions, comments count, and published date.

id required number Numeric article ID

Browse ML research papers and their linked code repositories

Science 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-paperswithcode": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/paperswithcode/mcp"
      ]
    }
  }
}
search_papers requires: query

Search ML research papers on Papers With Code by keyword. Returns title, authors, abstract, conference, and links.

query required string Search query (e.g., "attention transformer")
limit optional number Number of results to return (default: 10, max: 50)
get_paper requires: id

Get a single paper by its Papers With Code ID. Returns full metadata including title, abstract, authors, and links.

id required string Papers With Code paper ID (e.g., "attention-is-all-you-need")
get_repositories requires: id

Get code repositories linked to a paper by paper ID. Returns repo URL, stars, framework, and whether it is the official implementation.

id required string Papers With Code paper ID
trending_papers

Get trending ML research papers ordered by conference proceedings. Returns title, authors, conference, and links.

limit optional number Number of results to return (default: 10, max: 50)

Formula 1

live

Live F1 driver standings, race results, schedules, and driver profiles via Ergast

Sports 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-f1": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/f1/mcp"
      ]
    }
  }
}
get_current_standings

Get the current Formula 1 season driver championship standings. Returns position, points, wins, driver name, and constructor.

get_race_results requires: season, round

Get finishing results for a specific F1 race by season year and round number. Returns position, driver, constructor, status, and points.

season required string Season year (e.g., "2025")
round required string Round number within the season (e.g., "1")
get_schedule requires: season

Get the full race calendar/schedule for an F1 season. Returns round number, race name, circuit, location, and date for each round.

season required string Season year (e.g., "2025")
get_driver requires: driverId

Get profile information for an F1 driver by their Ergast driver ID. Returns name, number, nationality, and date of birth.

driverId required string Ergast driver ID (e.g., "hamilton", "verstappen", "leclerc")

NHL

live

Live NHL standings, scores, weekly schedule, and player profiles via the official NHL API

Sports 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nhl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nhl/mcp"
      ]
    }
  }
}
get_standings

Get current NHL standings for all teams. Returns wins, losses, OT losses, points, goals for/against, and streak.

get_scores

Get today's NHL game scores and states (live, final, scheduled). Returns teams, scores, shots on goal, and period.

get_schedule

Get the current NHL weekly schedule. Returns upcoming and recent games with teams, dates, and venues.

get_player requires: playerId

Get detailed profile and current season stats for an NHL player by their numeric player ID.

playerId required number NHL player ID (e.g., 8478402 for Connor McDavid)

NBA

live

NBA player profiles, team rosters, and game scores via BallDontLie

Sports 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nba": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nba/mcp"
      ]
    }
  }
}
search_players requires: query

Search NBA players by name. Returns player profile including position, height, weight, college, and current team.

query required string Player name or partial name to search for
limit optional number Number of results to return (default: 10, max: 100)
get_player requires: id

Get detailed profile for a single NBA player by their BallDontLie player ID.

id required number BallDontLie player ID
get_teams

List all 30 NBA teams with their full names, abbreviations, conference, and division.

get_games requires: season

Get NBA games for a given season. Returns game date, status, teams, and scores.

season required number Season start year (e.g., 2024 for the 2024-25 season)
limit optional number Number of results to return (default: 25, max: 100)

Congress

live

US congressional bills, members, and votes via GovTrack — no API key required

Government 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-congress": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/congress/mcp"
      ]
    }
  }
}
search_bills requires: query

Search US congressional bills by keyword. Returns bill type, number, title, status, sponsor, and introduction date.

query required string Keywords to search for in bill titles
limit optional number Number of results to return (default: 10, max: 100)
get_bill requires: id

Get full details for a single congressional bill by its GovTrack bill ID.

id required number GovTrack bill ID (numeric)
get_members

Get current members of Congress (senators and representatives). Returns name, party, state, district, and title.

limit optional number Number of results to return (default: 50, max: 600)
get_votes

Get recent congressional votes. Returns question, result, chamber, vote counts, and related bill if any.

limit optional number Number of votes to return (default: 20, max: 100)
congress optional number Congress number to filter by (e.g., 119)

Tides

live

NOAA tide predictions and observed water levels for US coastal stations

Science 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tides": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tides/mcp"
      ]
    }
  }
}
get_predictions requires: station_id, begin_date, end_date

Get hi/lo tide predictions for a NOAA station over a date range. Dates must be formatted YYYYMMDD.

station_id required string NOAA station ID (e.g. "9414290" for San Francisco)
begin_date required string Start date in YYYYMMDD format (e.g. "20240101")
end_date required string End date in YYYYMMDD format (e.g. "20240107")
get_water_levels requires: station_id

Get the latest observed water level for a NOAA station.

station_id required string NOAA station ID (e.g. "9414290" for San Francisco)
list_stations

List all NOAA tide prediction stations with their IDs and names.


National Weather Service forecasts, active weather alerts, and observation stations for US locations

Weather 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-noaa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/noaa/mcp"
      ]
    }
  }
}
get_forecast requires: lat, lon

Get a multi-day weather forecast for a latitude/longitude location using the National Weather Service.

lat required number Latitude of the location (e.g. 37.7749)
lon required number Longitude of the location (e.g. -122.4194)
get_alerts requires: state

Get currently active weather alerts for a US state (e.g. CA, NY, TX).

state required string Two-letter US state code (e.g. "CA", "NY")
get_stations requires: state

List weather observation stations for a US state.

state required string Two-letter US state code (e.g. "CA", "NY")
limit optional number Maximum number of stations to return (default: 20)

Reddit

live

Read public Reddit posts, search across subreddits, and fetch post comments

Social 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-reddit": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/reddit/mcp"
      ]
    }
  }
}
get_subreddit requires: subreddit

Get hot posts from a subreddit.

subreddit required string Subreddit name without the r/ prefix (e.g. "programming")
limit optional number Number of posts to return (default: 10, max: 100)
search_posts requires: query

Search Reddit posts by query string.

query required string Search query
limit optional number Number of results to return (default: 10, max: 100)
sort optional string Sort order: relevance, hot, top, new, comments (default: relevance)
get_post requires: post_id

Get a Reddit post and its top-level comments by post ID.

post_id required string Reddit post ID (the alphanumeric ID, e.g. "abc123")

Lobsters

live

Tech stories and discussions from the lobste.rs community link aggregator

Development 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-lobsters": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/lobsters/mcp"
      ]
    }
  }
}
get_hottest

Get the hottest (front page) stories on Lobsters.

get_newest

Get the newest stories on Lobsters.

get_story requires: short_id

Get a single Lobsters story and its comments by short ID.

short_id required string The short alphanumeric story ID from the Lobsters URL (e.g. "abcdef")
get_tag requires: tag

Get stories for a specific Lobsters tag (e.g. "rust", "programming", "security").

tag required string Tag name (e.g. "rust", "programming", "security")

Mastodon

live

Search accounts and statuses, browse trending posts, and read the public timeline on mastodon.social

Social 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mastodon": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mastodon/mcp"
      ]
    }
  }
}
search requires: query

Search Mastodon for accounts, statuses, or hashtags on mastodon.social.

query required string Search query string
type optional string Type of results: accounts, statuses, or hashtags (default: statuses)
limit optional number Number of results to return (default: 10, max: 40)
get_trending

Get currently trending statuses on mastodon.social.

limit optional number Number of trending statuses to return (default: 10, max: 40)
get_account requires: id

Get a public Mastodon account profile by numeric account ID.

id required string Numeric Mastodon account ID (e.g. "109302436954721982")
get_timeline

Get recent posts from the mastodon.social public timeline.

limit optional number Number of statuses to return (default: 20, max: 40)

Giphy

live

Search, browse trending, and fetch random GIFs from the Giphy library

Entertainment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-giphy": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/giphy/mcp"
      ]
    }
  }
}
search_gifs requires: query

Search Giphy for GIFs matching a keyword or phrase. Returns GIF title, URL, rating, and image URLs in original and fixed-height sizes.

query required string Search query, e.g. "funny cats" or "celebration"
limit optional number Number of results to return (1–25, default 10)
trending_gifs

Get the currently trending GIFs on Giphy. Returns title, URL, rating, and image URLs.

limit optional number Number of results to return (1–25, default 10)
random_gif

Get a single random GIF from Giphy, optionally filtered by a tag. Returns title, URL, rating, and image URLs.

tag optional string Optional tag to filter by, e.g. "dogs" or "anime"

Search board games, get detailed game info, and browse the hottest titles via Board Game Atlas

Games 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-boardgames": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/boardgames/mcp"
      ]
    }
  }
}
search_games requires: name

Search for board games by name using Board Game Atlas. Returns name, year, player count, playtime, rating, price, and a short description.

name required string Board game name or partial name to search for, e.g. "Catan" or "Ticket to Ride"
limit optional number Number of results to return (1–100, default 10)
get_game requires: id

Get full details for a specific board game by its Board Game Atlas ID. Returns name, year, player count, playtime, description, rating, publisher, designer, and price.

id required string Board Game Atlas game ID (e.g. "OIXt3DmJU0" for Catan)
hot_games

Get the most popular board games right now, ordered by popularity rank. Returns name, year, player count, playtime, rating, and rank.

limit optional number Number of results to return (1–100, default 10)

AniList

live

Search anime, get detailed series info, and browse trending titles via the AniList GraphQL API

Entertainment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-anilist": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/anilist/mcp"
      ]
    }
  }
}
search_anime requires: query

Search anime by title using AniList. Returns title, episode count, status, average score, genres, and a synopsis.

query required string Anime title to search for, e.g. "Attack on Titan" or "Cowboy Bebop"
limit optional number Number of results to return (1–25, default 10)
get_anime requires: id

Get full details for an anime by its AniList ID. Returns title, synopsis, episodes, duration, status, score, genres, studios, and season info.

id required number AniList media ID (e.g. 21 for One Piece, 1 for Cowboy Bebop)
trending_anime

Get currently trending anime on AniList, ranked by trending score. Returns title, status, score, episodes, and genres.

limit optional number Number of results to return (1–25, default 10)

Meteors

live

NASA fireball events, near-Earth asteroid close approaches, and NEO feed data

Science 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-meteors": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/meteors/mcp"
      ]
    }
  }
}
get_fireballs

Get recent bolide and fireball events recorded by US government sensors. Returns impact energy, radiated energy, velocity, altitude, and geographic location for each event.

limit optional number Maximum number of fireball events to return (default 10, max 100).
get_close_approaches

Get near-Earth asteroid close approach events within 0.05 AU of Earth. Returns object name, approach date, miss distance, relative velocity, and diameter estimates.

limit optional number Maximum number of close approach records to return (default 10, max 50).
get_neo_feed requires: start_date, end_date

Get Near-Earth Objects (NEOs) passing by Earth for a given date range using the NASA NeoWs API. Returns asteroid names, sizes, velocities, miss distances, and hazard status.

start_date required string Start date in YYYY-MM-DD format (e.g. "2025-01-01").
end_date required string End date in YYYY-MM-DD format. Maximum 7-day range from start_date (e.g. "2025-01-07").

Fake REST API for prototyping and testing — posts, users, and comments with no setup required

Development 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-jsonplaceholder": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/jsonplaceholder/mcp"
      ]
    }
  }
}
get_posts

Retrieve a list of fake blog posts from JSONPlaceholder. Useful for prototyping and testing. Returns post ID, user ID, title, and body text.

limit optional number Maximum number of posts to return (default 10, max 100).
get_post requires: id

Retrieve a single fake blog post by its ID from JSONPlaceholder. Returns post ID, user ID, title, and body text.

id required number Post ID to retrieve (1–100).
get_users

Retrieve a list of fake users from JSONPlaceholder. Returns name, username, email, address, phone, website, and company details.

get_comments requires: post_id

Retrieve comments for a specific fake blog post from JSONPlaceholder. Returns comment ID, commenter name, email, and body text.

post_id required number Post ID whose comments to retrieve (1–100).

URLhaus

live

Check URLs, hosts, and file hashes against the abuse.ch malware URL database

Security 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-urlhaus": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/urlhaus/mcp"
      ]
    }
  }
}
lookup_url requires: url

Look up a URL in the URLhaus malware database to check if it is known to host or distribute malware. Returns threat category, status, blacklist status, and tags.

url required string The full URL to look up (e.g. "http://example.com/malware.exe").
lookup_host requires: host

Look up a hostname or IP address in the URLhaus database to find associated malware URLs. Returns all known malicious URLs hosted on that host.

host required string Hostname or IP address to look up (e.g. "example.com" or "192.168.1.1").
get_recent

Get a list of recently submitted malware URLs from URLhaus. Useful for monitoring the latest threats.

limit optional number Number of recent URLs to return (default 10, max 1000).
lookup_payload

Look up a malware payload file by its MD5 or SHA256 hash in the URLhaus database. Returns file type, size, first/last seen dates, and associated delivery URLs.

md5_hash optional string MD5 hash of the payload to look up (32 hex characters).
sha256_hash optional string SHA256 hash of the payload to look up (64 hex characters).

CATAAS

live

Cat as a Service — random cat images, tag-filtered cats, and available tag listings

Animals 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cataas": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cataas/mcp"
      ]
    }
  }
}
random_cat

Get a random cat image from CATAAS (Cat as a Service). Returns the image URL, cat ID, and associated tags.

cat_by_tag requires: tag

Get a random cat image matching a specific tag from CATAAS. Use list_tags first to discover available tags. Returns the image URL, cat ID, and tags.

tag required string Tag to filter cats by (e.g. "cute", "orange", "grumpy"). Use list_tags to see available tags.
list_tags

List all available cat tags on CATAAS. Use these tags with cat_by_tag to find cats of a specific type or appearance.


Salesforce

live

Salesforce MCP Pack

CRMSaaS 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-salesforce": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/salesforce/mcp"
      ]
    }
  }
}
sf_query

Execute a SOQL query against Salesforce. Returns matching records.

sf_get_record

Get a single Salesforce record by object type and ID.

sf_search

Execute a SOSL search across Salesforce objects.

sf_describe

Describe a Salesforce SObject schema — fields, relationships, metadata.

sf_list_objects

List all available Salesforce SObject types in the org.

sf_create_record

Create a new Salesforce record.

sf_update_record

Update an existing Salesforce record.

sf_delete_record

Delete a Salesforce record.


Google Sheets MCP Pack

SaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-google_sheets": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/google_sheets/mcp"
      ]
    }
  }
}
sheets_read

Read data from a Google Sheets range. Returns rows as arrays.

sheets_write

Write data to a Google Sheets range. Overwrites existing data.

sheets_append

Append rows to the end of a Google Sheets table.

sheets_get_spreadsheet

Get spreadsheet metadata — title, sheets/tabs, and properties.

sheets_create

Create a new Google Spreadsheet.


Hubspot

live

HubSpot MCP Pack

CRMSaaS 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hubspot": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hubspot/mcp"
      ]
    }
  }
}
hs_list_contacts

List contacts from HubSpot CRM. Supports pagination via limit and after cursor.

hs_get_contact

Get a single HubSpot contact by ID.

hs_search_contacts

Search HubSpot contacts by query string. Matches against name, email, and other default searchable properties.

hs_list_companies

List companies from HubSpot CRM. Supports pagination via limit and after cursor.

hs_get_company

Get a single HubSpot company by ID.

hs_list_deals

List deals from HubSpot CRM. Supports pagination via limit and after cursor.

hs_get_deal

Get a single HubSpot deal by ID.


Jira

live

Jira MCP Pack

ProductivitySaaS 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-jira": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/jira/mcp"
      ]
    }
  }
}
jira_search

Search Jira issues using JQL (Jira Query Language). Returns matching issues with key fields.

jira_get_issue

Get a single Jira issue by its key (e.g., PROJ-123). Returns full issue details.

jira_list_projects

List all Jira projects accessible to the authenticated user.

jira_get_project

Get details for a specific Jira project by key or ID.


Slack MCP Pack

ProductivitySaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-slack_connect": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/slack_connect/mcp"
      ]
    }
  }
}
slack_list_channels

List channels in the Slack workspace. Returns channel names, IDs, and metadata.

slack_channel_history

Get message history from a Slack channel. Bot auto-joins the channel if needed.

slack_send_message

Send a message to a Slack channel. Bot auto-joins the channel if needed.

slack_list_users

List users in the Slack workspace. Returns user profiles, IDs, and status.

slack_join_channel

Join a public Slack channel so the bot can read history and post messages.


Notion MCP Pack

ProductivitySaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-notion_connect": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/notion_connect/mcp"
      ]
    }
  }
}
notion_search

Search pages and databases in the Notion workspace. Returns matching results with titles and IDs.

notion_get_page

Get a Notion page by ID. Returns page properties and metadata.

notion_get_database

Get a Notion database by ID. Returns database schema, properties, and metadata.

notion_query_database

Query a Notion database with optional filters and sorts. Returns matching pages/rows.

notion_list_pages

List all pages the Notion integration has access to. Uses search with page filter.


Google Docs MCP Pack — read, create, and edit Google Docs via OAuth.

SaaS 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-google_docs": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/google_docs/mcp"
      ]
    }
  }
}
docs_get

Get a Google Doc by ID — returns title, body content, and document structure.

docs_get_text

Get the plain text content of a Google Doc.

docs_create

Create a new Google Doc with a title.

docs_insert_text

Insert text into a Google Doc at a specified index position.

docs_append_text

Append text to the end of a Google Doc.

docs_replace_text

Find and replace text in a Google Doc.


Google Maps MCP Pack — geocoding, places, directions, distance matrix, elevation.

SaaS 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-google_maps": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/google_maps/mcp"
      ]
    }
  }
}
maps_geocode

Geocode an address to latitude/longitude coordinates.

maps_reverse_geocode

Reverse geocode coordinates to an address.

maps_place_search

Search for places nearby a location (restaurants, hotels, etc.).

maps_place_details

Get detailed info about a place (address, phone, hours, reviews, rating).

maps_directions

Get directions between two locations.

maps_distance_matrix

Get travel distance and time between multiple origins and destinations.

maps_elevation

Get elevation data for locations.


Stripe MCP Pack — read-only access to Stripe data via API key.

FinanceDataSaaS 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-stripe_connect": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/stripe_connect/mcp"
      ]
    }
  }
}
stripe_list_customers

List Stripe customers. Supports pagination.

stripe_get_customer

Get a Stripe customer by ID.

stripe_list_charges

List recent charges.

stripe_list_subscriptions

List active subscriptions.

stripe_get_balance

Get the current Stripe account balance.

stripe_list_invoices

List invoices.


Zendesk

live

Zendesk MCP Pack — tickets, users, organizations via OAuth.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-zendesk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/zendesk/mcp"
      ]
    }
  }
}
zd_list_tickets

List recent Zendesk tickets.

zd_get_ticket

Get a Zendesk ticket by ID.

zd_search_tickets

Search Zendesk tickets with a query string.

zd_list_users

List Zendesk users.

zd_get_user

Get a Zendesk user by ID.


Intercom

live

Intercom MCP Pack — contacts, conversations, companies via OAuth.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-intercom": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/intercom/mcp"
      ]
    }
  }
}
ic_search_contacts

Search Intercom contacts (users and leads).

ic_get_contact

Get an Intercom contact by ID.

ic_list_conversations

List Intercom conversations.

ic_get_conversation

Get an Intercom conversation by ID with full message thread.

ic_list_companies

List Intercom companies.


GitHub Private MCP Pack — access private repos, org data via OAuth.

DeveloperData 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-github_private": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/github_private/mcp"
      ]
    }
  }
}
gh_list_repos

List your repositories (including private ones).

gh_get_repo

Get repository details (works for private repos you have access to).

gh_list_issues

List issues for a repository.

gh_list_pulls

List pull requests for a repository.

gh_list_orgs

List organizations you belong to.

gh_get_file

Get file contents from a repository.


Gmail

live

Gmail MCP Pack

SaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gmail": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gmail/mcp"
      ]
    }
  }
}
gmail_list_messages

List messages in the user inbox. Returns message IDs, thread IDs, and snippets.

gmail_get_message

Get a specific Gmail message by ID. Returns full message details including headers, snippet, body, and labels.

gmail_search

Search Gmail messages using Gmail query syntax. Supports operators like from:, to:, subject:, has:attachment, after:, before:, is:unread, label:, etc.

gmail_send

Send an email from the authenticated Gmail account.

gmail_list_labels

List all labels in the user


Google Drive MCP Pack

SaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-google_drive": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/google_drive/mcp"
      ]
    }
  }
}
drive_list_files

List files in Google Drive. Optionally filter with a search query using Drive query syntax.

drive_get_file

Get metadata for a specific Google Drive file by ID. Returns name, mimeType, size, owners, permissions, and more.

drive_get_content

Download or export the content of a Google Drive file. For Google Docs/Sheets/Slides, exports to a specified format. For binary files, returns the raw content.

drive_create_file

Create a new file in Google Drive with the given name, content, and MIME type.

drive_search

Search Google Drive files using Drive query syntax. Supports operators like name, mimeType, fullText, modifiedTime, owners, etc.


Google Calendar MCP Pack

SaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-google_calendar": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/google_calendar/mcp"
      ]
    }
  }
}
gcal_list_events

List events from a Google Calendar. Optionally filter by time range. Returns event summaries, times, attendees, and locations.

gcal_get_event

Get a specific Google Calendar event by ID. Returns full event details including summary, description, start/end times, attendees, location, and conferencing info.

gcal_create_event

Create a new event on a Google Calendar. Specify summary, start/end times, and optional description, location, and attendees.

gcal_list_calendars

List all calendars accessible by the authenticated user. Returns calendar IDs, summaries, time zones, and access roles.

gcal_search_events

Search for events across a calendar using a text query. Matches against event summary, description, location, and attendees.


Google Ads

live

Google Ads MCP Pack

SaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-google_ads": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/google_ads/mcp"
      ]
    }
  }
}
gads_list_campaigns

List all campaigns in a Google Ads account. Returns campaign names, IDs, statuses, budgets, and types.

gads_get_campaign

Get detailed information about a specific Google Ads campaign by ID. Returns name, status, budget, bidding strategy, and settings.

gads_campaign_metrics

Get performance metrics for campaigns in a Google Ads account. Returns impressions, clicks, cost, conversions, CTR, and CPC for a given date range.

gads_list_ad_groups

List ad groups for a specific campaign. Returns ad group names, IDs, statuses, and CPC bid.

gads_search

Execute a custom GAQL (Google Ads Query Language) query. Use this for advanced queries not covered by other tools. See https://developers.google.com/google-ads/api/docs/query/overview for GAQL syntax.


Google Analytics MCP Pack

DataSaaS 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-google_analytics": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/google_analytics/mcp"
      ]
    }
  }
}
ga_run_report

Run a report on a Google Analytics 4 property. Specify dimensions (e.g., "city", "pagePath"), metrics (e.g., "activeUsers", "sessions"), and date ranges to retrieve analytics data.

ga_list_properties

List all Google Analytics 4 properties accessible by the authenticated user. Uses the Admin API to fetch account summaries with property details.

ga_get_realtime

Get a realtime report for a Google Analytics 4 property. Shows currently active users and realtime metrics.

ga_get_metadata

List all available dimensions and metrics for a Google Analytics 4 property. Useful for discovering what fields can be used in reports.


Linear

live

Linear MCP — wraps the Linear GraphQL API (OAuth)

ProductivityData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-linear": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/linear/mcp"
      ]
    }
  }
}
linear_list_issues

List issues from Linear with optional filtering. Returns issue ID, title, state, priority, assignee, and URL.

linear_get_issue

Get a single Linear issue by its ID (e.g., "ABC-123"). Returns full issue details including title, description, state, priority, assignee, labels, and comments.

linear_create_issue

Create a new issue in Linear. Returns the created issue ID, identifier, title, and URL.

linear_list_teams

List all teams in the Linear workspace. Returns team ID, name, key, and description.

linear_search

Search Linear issues by text query. Returns matching issues with ID, title, state, priority, and URL.


Asana

live

Asana MCP — wraps the Asana REST API (OAuth)

ProductivityData 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-asana": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/asana/mcp"
      ]
    }
  }
}
asana_list_workspaces

List Asana workspaces accessible to the authenticated user. Use this to discover workspace GIDs.

asana_list_tasks

List tasks in an Asana project. Returns task GID, name, completed status, assignee, and due date.

asana_get_task

Get a single Asana task by its GID. Returns full task details including name, notes, assignee, projects, tags, and subtasks.

asana_create_task

Create a new task in Asana. Returns the created task GID, name, and permalink URL.

asana_list_projects

List projects in an Asana workspace. Returns project GID, name, and archived status.

asana_search_tasks

Search for tasks in an Asana workspace by text. Returns matching tasks with GID, name, completed status, and assignee.


Clickup

live

ClickUp MCP — wraps the ClickUp REST API v2 (BYO API key)

ProductivityData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-clickup": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/clickup/mcp"
      ]
    }
  }
}
clickup_list_tasks

List tasks in a ClickUp list. Returns task ID, name, status, priority, assignees, due date, and URL.

clickup_get_task

Get a single ClickUp task by ID. Returns full task details including name, description, status, priority, assignees, tags, and time tracking.

clickup_create_task

Create a new task in a ClickUp list. Returns the created task ID, name, status, and URL.

clickup_list_spaces

List spaces in a ClickUp team/workspace. Returns space ID, name, and status info.

clickup_list_folders

List folders in a ClickUp space. Returns folder ID, name, and list count.


Monday

live

Monday.com MCP — wraps the Monday.com GraphQL API (BYO API key)

ProductivityData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-monday": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/monday/mcp"
      ]
    }
  }
}
monday_list_boards

List all boards in your Monday.com account. Returns board ID, name, state, and item count.

monday_get_board

Get a single Monday.com board by ID. Returns board details including name, columns, groups, and item count.

monday_list_items

List items in a Monday.com board. Returns item ID, name, group, column values, and created date.

monday_create_item

Create a new item in a Monday.com board. Returns the created item ID and name.

monday_search_items

Search items across all boards by text query. Returns matching items with ID, name, board name, and column values.


Confluence

live

Confluence MCP — wraps the Confluence Cloud REST API v2 (OAuth)

ProductivityData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-confluence": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/confluence/mcp"
      ]
    }
  }
}
confluence_list_pages

List pages in a Confluence space. Returns page ID, title, status, and version.

confluence_get_page

Get a single Confluence page by ID. Returns page title, body content, status, version, and space info.

confluence_search

Search Confluence content using CQL (Confluence Query Language). Returns matching pages with ID, title, space, and excerpt.

confluence_create_page

Create a new Confluence page. Returns the created page ID, title, and URL.

confluence_list_spaces

List all Confluence spaces. Returns space ID, key, name, type, and status.


Gitlab

live

GitLab MCP — wraps the GitLab REST API v4 (BYO API key)

DeveloperData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gitlab": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gitlab/mcp"
      ]
    }
  }
}
gitlab_list_projects

List GitLab projects accessible to the authenticated user. Returns project ID, name, path, description, stars, and URL.

gitlab_get_project

Get a single GitLab project by ID or URL-encoded path. Returns full project details including name, description, visibility, stars, forks, and default branch.

gitlab_list_issues

List issues in a GitLab project. Returns issue IID, title, state, labels, assignee, and URL.

gitlab_list_mrs

List merge requests in a GitLab project. Returns MR IID, title, state, author, source/target branches, and URL.

gitlab_get_file

Get a file from a GitLab repository. Returns the file content (decoded from base64), file name, size, and encoding.


Twilio

live

Twilio MCP Pack — send SMS, list messages, make calls via Twilio REST API.

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-twilio": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/twilio/mcp"
      ]
    }
  }
}
twilio_send_sms

Send an SMS message via Twilio. Returns the message SID and status.

twilio_list_messages

List recent SMS/MMS messages from your Twilio account. Supports filtering by to/from number and pagination.

twilio_get_message

Get details of a specific Twilio message by its SID.

twilio_list_calls

List recent phone calls from your Twilio account. Returns call SID, status, duration, and direction.

twilio_make_call

Initiate a phone call via Twilio. Requires a TwiML URL or application SID to control call behavior.


Freshdesk

live

Freshdesk MCP Pack — helpdesk ticket and contact management via Freshdesk API v2.

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-freshdesk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/freshdesk/mcp"
      ]
    }
  }
}
freshdesk_list_tickets

List tickets from Freshdesk. Supports filtering by status, priority, and pagination.

freshdesk_get_ticket

Get a single Freshdesk ticket by its ID. Returns full ticket details including conversations.

freshdesk_search_tickets

Search Freshdesk tickets using a query string. Supports Freshdesk filter syntax (e.g., "status:2 AND priority:3").

freshdesk_list_contacts

List contacts from Freshdesk. Supports pagination.

freshdesk_get_contact

Get a single Freshdesk contact by ID. Returns full contact details.


Paypal

live

PayPal MCP Pack — read-only access to PayPal transactions, orders, invoices, and disputes.

Finance 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-paypal": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/paypal/mcp"
      ]
    }
  }
}
paypal_list_transactions

List PayPal transactions within a date range. Returns transaction details including amount, status, and payer info.

paypal_get_order

Get details of a specific PayPal order by its ID.

paypal_list_invoices

List invoices from your PayPal account. Returns invoice numbers, amounts, and statuses.

paypal_get_invoice

Get details of a specific PayPal invoice by its ID.

paypal_list_disputes

List disputes (chargebacks and claims) from your PayPal account.


Quickbooks

live

QuickBooks MCP Pack — query customers, invoices, and accounts via QuickBooks Online API.

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-quickbooks": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/quickbooks/mcp"
      ]
    }
  }
}
qb_query

Run a SQL-like query against QuickBooks Online data. Supports queries like "SELECT * FROM Customer WHERE DisplayName LIKE

qb_get_customer

Get a single QuickBooks customer by ID. Returns full customer details including name, email, phone, and balance.

qb_list_invoices

List recent invoices from QuickBooks. Returns invoice number, customer, amount, due date, and status.

qb_get_invoice

Get a single QuickBooks invoice by ID. Returns full invoice details including line items.

qb_list_accounts

List chart of accounts from QuickBooks. Returns account name, type, balance, and classification.


Mailchimp

live

Mailchimp MCP Pack — manage audiences, campaigns, and members via Mailchimp Marketing API.

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mailchimp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mailchimp/mcp"
      ]
    }
  }
}
mailchimp_list_audiences

List all audiences (lists) in your Mailchimp account. Returns audience name, member count, and stats.

mailchimp_get_audience

Get details of a specific Mailchimp audience (list) by ID. Returns name, stats, and settings.

mailchimp_list_campaigns

List email campaigns from your Mailchimp account. Returns campaign title, type, status, and send time.

mailchimp_get_campaign

Get details of a specific Mailchimp campaign by ID. Returns campaign settings, tracking, and report summary.

mailchimp_list_members

List members (subscribers) of a specific Mailchimp audience. Returns email, status, and merge fields.


Shopify

live

Shopify MCP Pack — wraps the Shopify Admin REST API (2024-01)

DataSaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-shopify": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/shopify/mcp"
      ]
    }
  }
}
shopify_list_products

List products from a Shopify store. Returns up to 50 products by default.

shopify_get_product

Get a single product by ID from a Shopify store.

shopify_list_orders

List orders from a Shopify store, optionally filtered by status.

shopify_get_order

Get a single order by ID from a Shopify store.

shopify_list_customers

List customers from a Shopify store.


WooCommerce MCP Pack — wraps the WooCommerce REST API v3

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-woocommerce": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/woocommerce/mcp"
      ]
    }
  }
}
woo_list_products

List products from a WooCommerce store.

woo_get_product

Get a single product by ID from a WooCommerce store.

woo_list_orders

List orders from a WooCommerce store.

woo_get_order

Get a single order by ID from a WooCommerce store.

woo_list_customers

List customers from a WooCommerce store.


Airtable

live

Airtable MCP Pack — wraps the Airtable REST API v0

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-airtable": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/airtable/mcp"
      ]
    }
  }
}
airtable_list_records

List records from an Airtable table. Supports optional formula filtering.

airtable_get_record

Get a single record by ID from an Airtable table.

airtable_create_record

Create a new record in an Airtable table.

airtable_list_bases

List all bases accessible to the authenticated user.

airtable_get_base_schema

Get the schema (tables and fields) for an Airtable base.


Dropbox

live

Dropbox MCP Pack — wraps the Dropbox API v2

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dropbox": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dropbox/mcp"
      ]
    }
  }
}
dropbox_list_folder

List files and folders in a Dropbox directory.

dropbox_search

Search for files and folders in Dropbox by name or content.

dropbox_get_metadata

Get metadata for a file or folder in Dropbox.

dropbox_download

Download a file from Dropbox. Returns the file content as text and its metadata.

dropbox_create_folder

Create a new folder in Dropbox.


Zoho Crm

live

Zoho CRM MCP Pack — wraps the Zoho CRM API v6

CRMData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-zoho_crm": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/zoho_crm/mcp"
      ]
    }
  }
}
zoho_list_records

List records from a Zoho CRM module (e.g., Leads, Contacts, Deals).

zoho_get_record

Get a single record by ID from a Zoho CRM module.

zoho_search_records

Search records in a Zoho CRM module using criteria.

zoho_create_record

Create a new record in a Zoho CRM module.

zoho_list_modules

List all available modules in Zoho CRM.


Pipedrive

live

Pipedrive MCP Pack — wraps the Pipedrive REST API v1

CRMData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pipedrive": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pipedrive/mcp"
      ]
    }
  }
}
pipedrive_list_deals

List deals from Pipedrive CRM.

pipedrive_get_deal

Get a single deal by ID from Pipedrive.

pipedrive_list_persons

List persons (contacts) from Pipedrive.

pipedrive_get_person

Get a single person (contact) by ID from Pipedrive.

pipedrive_search

Search across deals, persons, organizations, products, or files in Pipedrive.


Greenhouse

live

Greenhouse MCP Pack — wraps the Greenhouse Harvest API v1

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-greenhouse": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/greenhouse/mcp"
      ]
    }
  }
}
greenhouse_list_candidates

List candidates from Greenhouse ATS.

greenhouse_get_candidate

Get a single candidate by ID from Greenhouse.

greenhouse_list_jobs

List jobs from Greenhouse ATS.

greenhouse_get_job

Get a single job by ID from Greenhouse.

greenhouse_list_applications

List job applications from Greenhouse ATS.


Bamboohr

live

BambooHR MCP Pack — wraps the BambooHR API v1

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bamboohr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bamboohr/mcp"
      ]
    }
  }
}
bamboohr_list_employees

List employees from BambooHR. Returns a directory of all employees.

bamboohr_get_employee

Get details for a specific employee by ID. Specify which fields to retrieve.

bamboohr_get_directory

Get the employee directory from BambooHR with basic info for all employees.

bamboohr_list_timeoff

List time-off requests within a date range.

bamboohr_get_employee_files

Get a list of files associated with an employee.


Facebook Ads MCP Pack

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-facebook_ads": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/facebook_ads/mcp"
      ]
    }
  }
}
fb_list_ad_accounts

List all ad accounts accessible by the authenticated Facebook user.

fb_list_campaigns

List campaigns for a Facebook ad account.

fb_get_campaign

Get details for a specific Facebook Ads campaign.

fb_campaign_insights

Get performance insights (impressions, clicks, spend, etc.) for a campaign.

fb_list_adsets

List ad sets for a specific campaign.


LinkedIn Ads MCP Pack

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-linkedin_ads": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/linkedin_ads/mcp"
      ]
    }
  }
}
li_list_ad_accounts

List LinkedIn ad accounts accessible by the authenticated user.

li_list_campaigns

List campaigns for a LinkedIn ad account.

li_get_campaign

Get details for a specific LinkedIn ad campaign.

li_campaign_analytics

Get analytics for one or more LinkedIn ad campaigns over a date range.

li_list_creatives

List creatives (ads) for a specific LinkedIn campaign.


Amplitude

live

Amplitude MCP Pack

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-amplitude": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/amplitude/mcp"
      ]
    }
  }
}
amp_get_events

Get event segmentation data from Amplitude for a date range. Returns event counts and breakdowns.

amp_get_active_users

Get daily/weekly/monthly active user counts for a date range.

amp_get_retention

Get retention data for a date range. Shows how many users return over time.

amp_user_search

Search for a user by user property or user ID. Returns matching Amplitude user profiles.

amp_get_user_activity

Get recent event activity for a specific user by their Amplitude ID.


Fred

live

FRED MCP — Federal Reserve Economic Data (St. Louis Fed)

GovernmentData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fred": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fred/mcp"
      ]
    }
  }
}
fred_get_series

Get observations (data points) for a FRED series. Key housing series: MORTGAGE30US (30-year mortgage rate), HOUST (housing starts), CSUSHPISA (Case-Shiller home price index), MSPUS (median home sale p

fred_search

Search for FRED series by keyword. Useful for discovering series IDs for housing, employment, inflation, and other economic data.

fred_series_info

Get metadata about a FRED series: title, units, frequency, seasonal adjustment, notes, and date range.

fred_category

Browse FRED categories. Use category_id=0 for the root. Useful for exploring available data by topic (housing = 97, money/banking/finance = 32991, population/employment/labor = 10).

fred_releases

Get the latest FRED data releases. Shows upcoming and recent releases of economic data.


Bls

live

BLS MCP — Bureau of Labor Statistics public data API (v2)

Data 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bls": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bls/mcp"
      ]
    }
  }
}
bls_get_series

Get time series data from the Bureau of Labor Statistics for one or more series. Supports employment, CPI/inflation, wages, productivity, and housing-related series.

bls_search

Search for BLS series IDs by keyword from a curated catalog of popular housing, employment, wages, prices, and productivity series. Returns matching series IDs with descriptions.

bls_latest

Get just the most recent data point for a BLS series. Useful for quick current-value lookups.

bls_popular_series

List all curated popular BLS series with IDs and descriptions, organized by category (housing, employment, prices, wages, productivity). Use this to discover available series.


Census

live

Census MCP — U.S. Census Bureau housing-relevant APIs.

GovernmentReal EstateData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-census": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/census/mcp"
      ]
    }
  }
}
census_acs

Get American Community Survey (ACS) 5-year data from the U.S. Census Bureau. The core dataset for housing statistics including total housing units, median home value, owner-occupied units, median rent

census_building_permits

Get monthly building permits data from the Census Bureau residential construction survey. Tracks new privately-owned housing units authorized by building permits.

census_housing_starts

Get new residential construction data including housing starts, units under construction, and completions from the Census Bureau.

census_homeownership

Get quarterly homeownership rates from the Census Bureau Housing Vacancy Survey (HVS). Reports the percentage of occupied housing units that are owner-occupied.

census_available_datasets

List available Census Bureau datasets. No API key required. Useful for discovering dataset identifiers, descriptions, and available variables before querying specific data.


Hud

live

HUD MCP — U.S. Department of Housing and Urban Development APIs.

GovernmentReal EstateDeveloper 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hud": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hud/mcp"
      ]
    }
  }
}
hud_fair_market_rents

Get Fair Market Rents (FMR) from HUD. FMRs are used to determine payment standards for the Housing Choice Voucher program, initial rents for Section 8 project-based assistance, and rent ceilings for H

hud_income_limits

Get HUD income limits for housing programs by area. Income limits determine eligibility for HUD-assisted housing programs. Returns thresholds for extremely low, very low, and low income categories by

hud_crosswalk

HUD USPS ZIP code crosswalk. Maps between ZIP codes, census tracts, counties, CBSAs (metro areas), and congressional districts. Essential for geographic analysis when joining data from different sourc

hud_chas

Get Comprehensive Housing Affordability Strategy (CHAS) data from HUD. CHAS data demonstrates the extent of housing problems and housing needs, particularly for low-income households. Used by communit

hud_list_states

List all U.S. state codes and names recognized by the HUD API. Useful for discovering valid state codes to use with other HUD tools.


Youtube

live

YouTube MCP — wraps the YouTube Data API v3 (BYO API key)

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-youtube": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/youtube/mcp"
      ]
    }
  }
}
yt_search

Search YouTube for videos, channels, or playlists. Returns snippet info including title, description, channel, thumbnails, and publish date.

yt_video_details

Get detailed information about one or more YouTube videos including title, description, channel, duration, view/like/comment counts, and tags.

yt_channel_details

Get YouTube channel information and statistics including subscriber count, video count, view count, description, and custom URL.

yt_channel_videos

List recent videos from a YouTube channel, ordered by date. Returns video ID, title, description, and publish date.

yt_video_comments

Get top-level comment threads on a YouTube video. Returns author, text, like count, and publish date.


Attom

live

ATTOM MCP — Premium real estate data from ATTOM Data Solutions

Real EstateData 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-attom": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/attom/mcp"
      ]
    }
  }
}
attom_property_detail

Get full property characteristics by address — lot size, square footage, bedrooms, bathrooms, year built, construction type, heating/cooling, and more.

attom_property_search

Search properties by location with optional filters. Search by postal code or by latitude/longitude with a radius.

attom_sales_history

Get complete sales history for a property (up to 10 years) — sale dates, prices, deed types, seller/buyer info.

attom_avm

Get automated valuation (AVM) for a property — estimated market value, confidence score, value range (low/high).

attom_assessment

Get property tax assessment details — assessed value, market value, tax amount, tax year, and assessment history.

attom_sales_trend

Get market sales trends by ZIP code — average/median sale price, volume, and price changes over time.

attom_rental_avm

Get rental property AVM — estimated monthly rent, rental yield, and rental value range.

attom_school_search

Search schools near a location — name, type (public/private), grades, distance, and rankings.


Zillow

live

Zillow Research housing data — home values (ZHVI), rents (ZORI), inventory, sales, listings. Ingested from public CSV dumps weekly.

Real EstateDataHousing 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-zillow": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/zillow/mcp"
      ]
    }
  }
}
zillow_home_values requires: region

Zillow Home Value Index (ZHVI) time series — monthly home value estimates for a region. Smoothed, seasonally adjusted, mid-tier all homes. US metros, states, national.

region required string Region name (substring match), e.g. "Los Angeles", "California", "United States"
region_type optional string Optional disambiguator: metro | state | national
from optional string Start date YYYY-MM-DD (default: 5y ago)
to optional string End date YYYY-MM-DD (default: latest)
zillow_rent_prices requires: region

Zillow Observed Rent Index (ZORI) time series — monthly rent estimates by metro.

region required string Metro region name
from optional string Start date YYYY-MM-DD
to optional string End date YYYY-MM-DD
zillow_market_snapshot requires: region

Latest values across every metric (home value, rent, inventory, sales count, median sale price, new listings) for one region — single call summary.

region required string Region name
region_type optional string Optional: metro | state | national
zillow_top_markets requires: metric

Top or bottom regions ranked by latest value of a metric. e.g. most expensive metros by zhvi, cheapest by median_sale_price.

metric required string zhvi | zori | sales_count | median_sale_price | inventory | new_listings
region_type optional string metro | state (default metro)
limit optional number 1-100 (default 10)
direction optional string top | bottom (default top)

Polymarket

live

Polymarket prediction-market data — current Yes/No prices, volume, resolution criteria, price history. Public Gamma + CLOB APIs, no auth.

MarketsPredictionFinanceData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-polymarket": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/polymarket/mcp"
      ]
    }
  }
}
polymarket_search requires: query

Keyword search across Polymarket events. Returns events with their child markets — question, current Yes/No prices, volume, end date.

query required string Search query, e.g. "presidential election", "rate cut", "world cup"
limit optional number 1-25 events (default 5)
include_closed optional boolean Include resolved markets (default false)
polymarket_top_markets

Highest-volume open markets, sorted by trading volume in the chosen window (24hr | 1wk | 1mo | 1yr | all).

window optional string 24hr | 1wk | 1mo | 1yr | all (default 24hr)
limit optional number 1-100 (default 10)
polymarket_market requires: slug_or_id

Full detail for one market by slug or id — description (resolution criteria), Yes/No prices, volume, liquidity, end date, parent event.

slug_or_id required string Market slug or numeric id
polymarket_event requires: slug_or_id

Get one event with all of its child markets. Events group related markets (e.g. all candidates in an election).

slug_or_id required string Event slug or numeric id
polymarket_price_history requires: slug_or_id

Time series of Yes-token probability for one market. Returns array of {timestamp, yes_probability}.

slug_or_id required string Market slug or numeric id
interval optional string 1h | 6h | 1d | 1w | 1m | max (default 1d)

AI Briefing MCP — Keep AI models current on industry developments

Developer 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ai-briefing": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ai-briefing/mcp"
      ]
    }
  }
}
get_briefing

Get today

search_developments

Search for new tools, APIs, MCP servers, and frameworks by keyword. Returns matching developments across HN, GitHub, HuggingFace, and AI company blogs. Use for queries like "new MCP servers", "vector

get_recent

Get recent tool and API releases filtered by category, source, or timeframe. Categories: mcp, tool, agent_framework, open_source, model_release, integration, infrastructure, product, paper. Sources: h

get_model_landscape

Get recent AI model releases — what models shipped, from which companies, what they can do. Useful for knowing what

get_timeline

Get a chronological timeline of AI developments between two dates. Useful for understanding what happened during a specific period.

get_ai_toolbelt

Get the latest tools, features, and capabilities you can use RIGHT NOW. Returns new Claude Code features, MCP servers, SDK updates, CLI tools, and integrations. Call this to discover what new tools ar

get_ai_news

Get AI industry news — model releases, funding rounds, acquisitions, policy changes, benchmark results. Separate from toolbelt; this is about what happened in the AI industry, not tools you can use.

what_happened

Natural language query about recent tools and developments. Ask "any new MCP servers this week", "latest Claude tools", "new open source frameworks", "what APIs launched recently". Returns the most re


Housing Intel MCP — Meta-pack that chains FRED, BLS, ATTOM, and HUD APIs

GovernmentReal EstateData 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-housing-intel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/housing-intel/mcp"
      ]
    }
  }
}
housing_market_snapshot

Get a national housing market snapshot — 30-year mortgage rates, housing starts, Case-Shiller home price index, unemployment, owners equivalent rent, and construction employment. Mortgage rates, housi

housing_property_report

Complete property analysis combining ATTOM data — property details, automated valuation (AVM), sales history, and tax assessment in one call. Note: this meta-pack uses _attomKey (not _apiKey like the

housing_rental_analysis

Rental market analysis for a property and area — estimated rent (ATTOM), fair market rents (HUD, if key provided), and CPI rent trend (BLS). Note: uses _attomKey (not _apiKey) for ATTOM access.

housing_affordability_check

Check housing affordability metrics — current mortgage rate (national), median home price (national), metro-level FHFA HPI if metro_name provided, average hourly earnings, estimated monthly payment, i

housing_employment_outlook

Labor market indicators relevant to housing — total nonfarm employment, construction employment, residential building employment, unemployment rate, JOLTS job openings, and JOLTS hires. All from BLS (

housing_signal_scan

Comprehensive housing market signal scan — checks 45+ indicators for reversals, unusual moves, acceleration, and extreme readings. Covers: mortgage rates, housing starts/permits, NAR existing home sal

housing_mortgage_history

Freddie Mac Primary Mortgage Market Survey — weekly US mortgage rates back to 1971. Returns the latest snapshot, a time series for the requested window, and min/max/avg stats. Sourced from Freddie Mac directly (not FRED), ingested weekly by the Pipeworx data pipeline.

window optional string 1m | 3m | 6m | 1y | 5y | all (default 1y)
as_of optional string Optional YYYY-MM-DD — returns the rate for the closest observation on or before that date.

Altos

live

Altos Research MCP — Real estate market intelligence

Science 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-altos": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/altos/mcp"
      ]
    }
  }
}
altos_market_stats

Get aggregated market statistics for a region — inventory, new listings, median price, days on market, and market action index.

altos_inventory_trend

Get inventory trend over multiple weeks — tracks inventory, new listings, days on market, median price, and percent price decreased over time.

altos_active_listings

Get active listing-level data for a region — individual property details including address, price, beds, baths, and square footage.

altos_pending_sales

Get pending sales (under contract) for a region — properties that have accepted offers but have not yet closed.

altos_new_listings

Get new listings (on market less than a week) for a region — freshly listed properties.

altos_list_files

List available data files for a region — returns the catalog of downloadable data files from Altos Research.


Gong

live

Gong MCP — wraps the Gong API v2 (OAuth)

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gong": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gong/mcp"
      ]
    }
  }
}
gong_list_calls

List recorded calls from Gong. Optionally filter by date range. Supports cursor-based pagination.

gong_get_call

Get details for a specific Gong call by its ID, including participants, duration, and metadata.

gong_get_transcript

Get the transcript for a specific Gong call. Returns the full conversation transcript.

gong_list_users

List all users in the Gong workspace.

gong_search_calls

Search Gong calls by keyword. Returns calls that match the search text.


Klaviyo

live

Klaviyo MCP Pack — wraps the Klaviyo API for email marketing

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-klaviyo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/klaviyo/mcp"
      ]
    }
  }
}
klaviyo_list_profiles

List profiles (contacts) from Klaviyo. Supports optional filtering and page size.

klaviyo_get_profile

Get a single Klaviyo profile by its ID. Returns full profile details.

klaviyo_list_lists

List all email lists in Klaviyo.

klaviyo_list_campaigns

List campaigns from Klaviyo. Optionally filter by status (draft, scheduled, sent).

klaviyo_get_campaign

Get a single Klaviyo campaign by its ID. Returns full campaign details.


Chargebee

live

Chargebee MCP Pack — wraps the Chargebee API v2

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-chargebee": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/chargebee/mcp"
      ]
    }
  }
}
chargebee_list_subscriptions

List subscriptions from Chargebee. Supports optional status filter, limit, and offset for pagination.

chargebee_get_subscription

Get a single Chargebee subscription by its ID. Returns full subscription details.

chargebee_list_customers

List customers from Chargebee. Supports limit and offset for pagination.

chargebee_get_customer

Get a single Chargebee customer by their ID. Returns full customer details.

chargebee_list_invoices

List invoices from Chargebee. Supports optional status and customer_id filters, plus limit and offset for pagination.


Ashby

live

Ashby MCP Pack — wraps the Ashby ATS API

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ashby": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ashby/mcp"
      ]
    }
  }
}
ashby_list_candidates

List candidates from Ashby. Returns candidate names, emails, and metadata.

ashby_get_candidate

Get details for a specific candidate by their ID. Returns full candidate profile.

ashby_list_jobs

List jobs from Ashby. Optionally filter by status (open, closed, draft, archived).

ashby_get_job

Get details for a specific job by its ID. Returns full job posting information.

ashby_list_applications

List job applications from Ashby. Returns application details including candidate and job info.


Edgar

live

EDGAR MCP — SEC EDGAR public APIs (free, no auth)

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-edgar": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/edgar/mcp"
      ]
    }
  }
}
edgar_search_filings

Full-text search across all SEC EDGAR filings. Search by keyword, company name, or topic. Optionally filter by form type and date range.

edgar_company_filings

Get recent SEC filings for a specific company. Accepts a ticker symbol or CIK number. Optionally filter by form type.

edgar_company_facts

Get structured XBRL financial data for a company by CIK. Returns key financial metrics like revenue, net income, assets, and more with their most recent annual values.

edgar_company_concept

Get a specific financial metric over time for a company. Returns all reported values across filings for a given US-GAAP concept.

edgar_ticker_to_cik

Look up a company CIK number from its ticker symbol. The CIK is needed for other EDGAR tools.


Cfpb

live

CFPB MCP — Consumer Financial Protection Bureau complaint database (free, no auth)

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cfpb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cfpb/mcp"
      ]
    }
  }
}
cfpb_search_complaints

Search the CFPB consumer complaint database. Filter by keyword, company, product category, and date range. Returns complaint narratives, company responses, and resolution status.

cfpb_company_complaints

Get recent consumer complaints for a specific company, sorted by newest first. Returns complaint details and company response information.

cfpb_get_complaint

Get full details for a single consumer complaint by its complaint ID number.

cfpb_top_companies

Get the companies with the most consumer complaints in a given date range. Useful for identifying which companies receive the most complaints.

cfpb_product_breakdown

Get complaint counts broken down by product category. Optionally filter by company and/or date range.


Fdic

live

FDIC MCP — FDIC BankFind Suite API (free, no auth)

FinanceData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fdic": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fdic/mcp"
      ]
    }
  }
}
fdic_search_institutions

Search for FDIC-insured banks and institutions by name. Returns institution name, CERT number, city, state, total assets, deposits, net income, ROA, ROE, and report date.

fdic_get_institution

Get detailed information for a specific FDIC-insured bank by its CERT (certificate) number. Returns full institution profile including name, location, assets, and regulatory details.

fdic_financials

Get financial call report data for a bank by CERT number. Returns quarterly financial metrics including total assets, deposits, net income, interest income, loan losses, ROA, ROE, and efficiency ratio

fdic_failures

List FDIC bank failures, sorted by most recent. Optionally filter by date range. Returns bank name, city, state, CERT, failure date, acquiring institution, and fund used.

fdic_summary

Get aggregate industry summary data for all FDIC-insured institutions for a given reporting date. Returns total assets, deposits, net income, interest income, number of loans, and institution count.


Alpha Vantage MCP — Stock market data, fundamentals, and earnings

FinanceData 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-alphavantage": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/alphavantage/mcp"
      ]
    }
  }
}
av_quote

Get a real-time stock quote including price, change, change percent, volume, and latest trading day.

av_daily

Get daily time series (open, high, low, close, volume) for a stock. Returns up to 100 recent trading days by default, or 20+ years of full history.

av_overview

Get company overview and fundamentals including description, sector, market cap, P/E ratio, EPS, dividend yield, 52-week range, and more.

av_income_statement

Get income statement data for a company, including both annual and quarterly reports. Shows revenue, gross profit, operating income, net income, EBITDA, and more.

av_balance_sheet

Get balance sheet data for a company, including both annual and quarterly reports. Shows total assets, liabilities, equity, cash, debt, and more.

av_earnings

Get earnings data for a company, including annual and quarterly EPS (reported and estimated), surprise amount, and surprise percentage.


Defillama

live

DefiLlama MCP — DeFi analytics from DefiLlama (free, no auth)

Data 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-defillama": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/defillama/mcp"
      ]
    }
  }
}
defi_tvl_protocols

Get TVL (Total Value Locked) for all DeFi protocols, optionally filtered by name or category. Returns protocol name, TVL, chain, and category.

defi_protocol_detail

Get detailed TVL history, chain breakdowns, and token info for a specific DeFi protocol.

defi_chain_tvl

Get TVL (Total Value Locked) for each blockchain. No parameters needed.

defi_protocol_fees

Get fee or revenue data for a DeFi protocol. Returns daily fee/revenue figures.

defi_stablecoins

Get stablecoin market data including market cap and chain distribution. No parameters needed.

defi_yields

Get DeFi yield pool opportunities with APY, TVL, and project info. Optionally filter by project name, minimum TVL, or minimum APY.


FinTech Intel MCP — Compound tools that chain SEC, CFPB, FDIC,

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fintech-intel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fintech-intel/mcp"
      ]
    }
  }
}
fintech_company_deep_dive

Complete company financial analysis in one call — SEC filings (10-K), stock quote, company overview, income statement, consumer complaints, and macro rates. Provide a stock ticker.

fintech_bank_health_check

Bank health assessment — FDIC institution lookup, financials, recent industry failures, consumer complaints, and industry summary. Works with bank name (e.g., "Silicon Valley Bank", "JPMorgan Chase").

fintech_market_snapshot

Financial market conditions dashboard — CFPB complaint trends, FDIC banking industry summary, and optionally FRED macro rates (fed funds, 10Y/2Y treasury, yield curve, high yield spread, VIX).


ClinicalTrials MCP — wraps ClinicalTrials.gov API v2 (free, no auth)

GovernmentHealthData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-clinicaltrials": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/clinicaltrials/mcp"
      ]
    }
  }
}
ct_search

Search clinical trials by keyword, status, phase, or sponsor. Returns study count and array of matching trials with key metadata.

ct_get_study

Get full study details for a clinical trial by its NCT ID. Returns the complete protocol section including eligibility, outcomes, and results.

ct_count_by_condition

Count the number of clinical trials for a condition or disease area. Useful for landscape analysis and competitive intelligence.

ct_sponsor_trials

List clinical trials run by a specific sponsor or pharmaceutical company. Useful for pipeline analysis.

ct_recent_updates

Get recently updated or posted clinical trials, sorted by last update date. Good for monitoring pipeline changes.


Openfda

live

OpenFDA MCP — wraps the openFDA API (free, no auth required)

GovernmentHealthData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openfda": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openfda/mcp"
      ]
    }
  }
}
fda_drug_events

Search FDA Adverse Event Reporting System (FAERS) for drug adverse event reports. Supports OpenFDA search syntax for filtering by drug name, reaction, seriousness, date range, and more.

fda_drug_approvals

Search FDA drug approval records (Drugs@FDA). Find approved drugs by brand name, generic name, application number, or sponsor.

fda_drug_labels

Search FDA drug labeling (Structured Product Labeling). Returns drug label sections including indications, warnings, dosage, and contraindications.

fda_drug_recalls

Search FDA drug recall and enforcement actions. Find recalls by drug name, classification level, or reason.

fda_event_counts

Count adverse events grouped by a specific field. Powerful for signal detection — e.g., find the top adverse reactions for a drug, or see event timelines.


Rxnorm

live

RxNorm MCP — wraps the NLM RxNav REST API (free, no auth)

HealthData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-rxnorm": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/rxnorm/mcp"
      ]
    }
  }
}
rxnorm_search

Search for drugs by name (brand or generic). Returns concept groups with RxCUI identifiers, names, synonyms, and term types (BN=brand, IN=ingredient, SBD=branded dose form, etc.).

rxnorm_get_properties

Get properties for a drug by its RxCUI (RxNorm concept ID). Returns name, synonym, term type, language, and suppress flag.

rxnorm_related

Get related concepts for a drug — brand names, generics, ingredients, and dose forms. Useful for mapping between brand and generic names.

rxnorm_interactions

Check drug-drug interactions for a given RxCUI. NOTE: The NIH retired this API in January 2024 — this tool may return errors. Use PubMed or drug label lookups for interaction data instead.

rxnorm_ndc

Get NDC (National Drug Code) identifiers for a drug by its RxCUI. NDC codes uniquely identify drug products in the US market.


Pharma Intel MCP — Compound tools that chain ClinicalTrials.gov,

GovernmentHealthScience 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pharma-intel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pharma-intel/mcp"
      ]
    }
  }
}
pharma_drug_profile

Complete drug dossier in one call — FDA approvals, drug labels, adverse events, RxNorm properties, drug interactions, and active clinical trials. Provide a drug name (e.g., "ozempic", "metformin", "ke

pharma_pipeline_scan

Clinical trial pipeline analysis — by condition (e.g., "lung cancer", "Alzheimer") or by sponsor (e.g., "Pfizer", "Moderna"). Returns trial counts, recruiting studies by phase, and FDA-approved drugs

pharma_safety_report

Drug safety assessment — adverse event reports, top reaction types, recall history, and drug-drug interactions. Provide a drug name.


Samgov

live

SAM.gov MCP — Federal contract opportunities and entity registration data

GovernmentData 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-samgov": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/samgov/mcp"
      ]
    }
  }
}
sam_search_opportunities

Search active federal contract opportunities on SAM.gov. Filter by keyword, NAICS code, set-aside type, posting date range, and procurement type.

sam_get_opportunity

Get full details for a specific federal contract opportunity by its solicitation number. Returns point of contact, attachments, classification, and full description.

sam_entity_search

Search for registered entities (vendors/contractors) in the SAM.gov entity database. Returns UEI, CAGE code, business name, address, NAICS codes, small business status, and certifications.

sam_set_aside_opportunities

Search federal contract opportunities filtered by small business set-aside type. Useful for finding opportunities reserved for specific small business categories.


USAspending MCP — Federal spending data from USAspending.gov API

GovernmentData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-usaspending": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/usaspending/mcp"
      ]
    }
  }
}
usa_spending_by_agency

Get federal spending breakdown by agency for a given fiscal year and optional quarter. Shows how much each agency has spent.

usa_award_search

Search federal contract awards by keywords, agency, date range, and NAICS code. Returns recipient, amount, dates, agency, and description. Award types: A=BPA Call, B=Purchase Order, C=Delivery Order,

usa_spending_by_category

Get federal spending broken down by category: NAICS code, PSC (product/service code), recipient, awarding agency, or awarding subagency. Useful for market analysis.

usa_recipient_profile

Get a specific contractor or recipient

usa_spending_trends

Get federal spending over time for given keywords or agency. Returns spending grouped by fiscal year, quarter, or month. Useful for trend analysis.


Sbir

live

SBIR MCP — wraps the SBIR.gov public API (free, no auth)

GovernmentData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sbir": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sbir/mcp"
      ]
    }
  }
}
sbir_search_awards

Search SBIR/STTR awards by keyword, agency, year, company, or state. Returns awards with company name, award amount, agency, topic, abstract, year, and phase.

sbir_get_award

Get details for a single SBIR/STTR award by its award ID. Returns full award information including company, amount, agency, abstract, and phase.

sbir_search_solicitations

Search SBIR/STTR solicitations (funding opportunities). Returns topics with description, agency, and open/close dates.

sbir_company_awards

Get all SBIR/STTR awards for a specific company. Returns the full list of awards with amounts, agencies, topics, and phases.

sbir_agency_stats

Get SBIR/STTR award counts by agency. If an agency is specified, returns the count for that agency. Otherwise returns counts for all major agencies (DOD, HHS, NASA, NSF, DOE, USDA).


GovCon Intel MCP — Compound tools that chain SAM.gov, USAspending,

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-govcon-intel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/govcon-intel/mcp"
      ]
    }
  }
}
govcon_contractor_profile

Complete government contractor dossier — SAM.gov entity registration, federal award history (USAspending), SBIR/STTR grants, and recipient spending profile. Provide a company name.

govcon_opportunity_scan

Government contracting opportunity search — open SAM.gov opportunities, set-aside contracts (8(a), HUBZone, SDVOSB, WOSB), recent awards, and active SBIR solicitations matching your keywords.

govcon_agency_landscape

Federal agency contracting landscape — spending overview, recent awards, SBIR program stats, and spending trends. Provide an agency name (e.g., "Department of Defense", "NASA", "NIH").


Nass

live

NASS MCP — USDA National Agricultural Statistics Service (Quick Stats)

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nass": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nass/mcp"
      ]
    }
  }
}
nass_query

Query USDA NASS Quick Stats — the most comprehensive source of US agricultural statistics. Supports flexible filtering by commodity, statistic category, geography, year, and more. Returns production,

nass_crop_production

Get US crop production data — a shortcut for querying NASS survey data on crop yields, production totals, and planted/harvested acreage. Pre-filtered to source=SURVEY, sector=CROPS.

nass_prices

Get prices received by US farmers for crops and livestock. Pre-filtered to source=SURVEY, stat_category=PRICE RECEIVED.

nass_livestock

Get US livestock data — inventory counts, slaughter numbers, and production. Pre-filtered to sector=ANIMALS & PRODUCTS.

nass_crop_progress

Get weekly crop progress and condition reports — planting progress, emergence, blooming, harvest completion, and crop condition ratings (good/excellent/poor). Pre-filtered to source=SURVEY, freq=WEEKL


Fas

live

FAS MCP — USDA Foreign Agricultural Service (trade & global production data)

TradeData 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fas": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fas/mcp"
      ]
    }
  }
}
fas_exports

Get US agricultural export data by commodity and destination country. Uses USDA FAS GATS (Global Agricultural Trade System) data. Shows export volumes and values.

fas_imports

Get US agricultural import data by commodity and origin country. Shows import volumes and values from USDA FAS trade data.

fas_production

Get world production, supply, and distribution estimates for agricultural commodities from USDA FAS PSD (Production, Supply & Distribution) database. Covers global production, consumption, stocks, and

fas_commodity_codes

List available USDA FAS PSD commodity codes with names and categories. Use these codes with fas_production and other FAS tools. Supports filtering by category or keyword.


Eia

live

EIA MCP — US Energy Information Administration API v2

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-eia": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/eia/mcp"
      ]
    }
  }
}
eia_series

Get any EIA time series data by route path. The EIA API v2 uses a hierarchical route structure

eia_petroleum

Get petroleum/fuel data — gasoline prices, diesel prices, crude oil prices, petroleum stocks,

eia_natural_gas

Get natural gas data — prices, production, consumption, and storage levels.

eia_electricity

Get electricity data — generation by fuel source, retail sales, and electricity prices.

eia_ethanol

Get fuel ethanol data — production volumes, stock levels, and imports.


Comtrade

live

Comtrade MCP — UN Comtrade API for international bilateral trade data

TradeData 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-comtrade": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/comtrade/mcp"
      ]
    }
  }
}
comtrade_trade_data

Get bilateral trade data between two countries from the UN Comtrade database. Returns trade value, quantity, partner, and commodity description for imports and/or exports.

comtrade_top_partners

Get top trading partners for a country by trade value. Useful for understanding a country

comtrade_top_commodities

Get top traded commodities between two countries by trade value. Shows which product categories dominate bilateral trade.

comtrade_country_codes

Get a reference list of common country ISO numeric codes used in UN Comtrade queries. No API call needed.


Census Trade MCP — US Census Bureau International Trade data

GovernmentTradeData 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-census-trade": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/census-trade/mcp"
      ]
    }
  }
}
census_imports

Get US import data by HS commodity code and/or country. Returns import values, quantities, commodity details, and country names from the US Census Bureau.

census_exports

Get US export data by HS commodity code and/or country. Returns export values, quantities, commodity details, and country names from the US Census Bureau.

census_trade_balance

Get the US trade balance (exports minus imports) with a specific country for a given year. Uses end-use commodity categories for aggregate values.

census_trade_trends

Get monthly US trade trends over a period. Shows how trade values change month by month for a commodity and/or country.


Treasury Fiscal MCP — US Treasury Fiscal Data API

GovernmentData 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-treasury-fiscal": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/treasury-fiscal/mcp"
      ]
    }
  }
}
treasury_customs_revenue

Get monthly US customs duty revenue collections from the Treasury. Useful for tracking tariff revenue impact over time.

treasury_receipts

Get total US government receipts broken down by source (individual income tax, corporate tax, excise taxes, customs duties, etc.).

treasury_debt

Get the current US national debt (debt to the penny). Returns total public debt outstanding with historical data points.

treasury_exchange_rates

Get Treasury exchange rates for a specific country. Shows the official rates used by the US government for currency conversion.


Trade Intel MCP — Compound tools that chain Comtrade, Census, Treasury,

GovernmentTradeData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-trade-intel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/trade-intel/mcp"
      ]
    }
  }
}
trade_bilateral_analysis

Complete bilateral trade analysis between two countries in one call. Combines Comtrade trade flows (imports + exports + top commodities), Treasury exchange rates, and optionally FRED dollar index. Use

trade_country_profile

Comprehensive trade profile for a country — top 10 import/export partners and top 10 import/export commodities, all in one call. Use country codes: 842=US, 156=China, 276=Germany, 392=Japan, 826=UK, 4

trade_macro_dashboard

US trade macro indicators dashboard — customs revenue, exchange rates, trade balance, monthly trends, import/export price indices. Optionally includes FRED dollar index and goods/services balance with


Epa Echo

live

EPA ECHO MCP — wraps EPA ECHO Web Services (free, no auth)

GovernmentEnvironment 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-epa-echo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/epa-echo/mcp"
      ]
    }
  }
}
echo_facility_search

Search EPA-regulated facilities by name, state, ZIP, city, or NAICS code. Returns registry IDs, addresses, compliance status, and program affiliations (CWA, CAA, RCRA).

echo_compliance_history

Get compliance and enforcement history for a specific EPA-regulated facility. Returns compliance status, quarters in violation, inspection dates, and enforcement actions.

echo_violations

Get detailed violation records for a facility, optionally filtered by environmental program (CWA, CAA, RCRA).

echo_enforcement_actions

Get enforcement case details for a facility, including formal/informal actions, penalties assessed, and penalty amounts.

echo_search_by_violation

Find facilities currently in significant non-compliance. Filter by state and/or environmental program.


EPA Emissions MCP — wraps EPA Envirofacts REST API (free, no auth)

GovernmentDataEnvironment 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-epa-emissions": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/epa-emissions/mcp"
      ]
    }
  }
}
ghg_facility_emissions

Search greenhouse gas emissions by state and optionally by facility name. Returns facility details and total GHG emissions in metric tons CO2 equivalent.

ghg_emissions_by_sector

Get greenhouse gas emissions by industry sector for a state. Optionally filter by sector type (e.g., "Power Plants", "Chemicals").

tri_facility_releases

Search Toxic Release Inventory (TRI) facilities by state. Returns facility details and released chemicals.

tri_chemical_releases

Search toxic chemical releases across all facilities. Filter by chemical name and optionally by state. Returns quantities released by media (air, water, land).

tri_trends

Get toxic release trends over time for a state or chemical across reporting years. Queries multiple years and summarizes totals.


Pipeworx Catalog MCP — Exposes the full Pipeworx platform to Claude

Utility 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pipeworx-catalog": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pipeworx-catalog/mcp"
      ]
    }
  }
}
list_packs

List all available Pipeworx MCP packs with their slug, name, category, tool count, and gateway URL. This is the master inventory of everything Pipeworx offers. Use this to find packs by category or di

get_pack_tools

Get the full tool definitions for a specific pack — tool names, descriptions, parameters with types and required flags. Use this before calling a tool to understand its exact interface.

get_connection_config

Get the MCP client config JSON for connecting to one or more packs. Returns ready-to-paste config for Claude Desktop, Claude Code CLI command, and the raw gateway URL.

search_packs

Search Pipeworx packs by keyword. Searches pack names, descriptions, and tool names. Use when looking for a specific capability (e.g., "translate text", "stock prices", "random jokes").

get_platform_status

Get current Pipeworx platform health — how many packs are live, any outages or degraded services, total tool count.

search_mcp_directory

Search the full Pipeworx MCP directory — not just hosted packs but thousands of community MCP servers indexed from across the ecosystem. Use to find MCP servers for specific use cases.


Trademarks

live

Trademarks MCP — USPTO TSDR trademark lookup

Trade 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-trademarks": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/trademarks/mcp"
      ]
    }
  }
}
get_trademark_by_serial

Look up a US trademark by serial number. Returns status, owner, filing/registration dates, goods/services, and classification. Requires USPTO API key (free at account.uspto.gov).

get_trademark_by_registration

Look up a US trademark by registration number. Returns status, owner, mark text, goods/services, and classification. Requires USPTO API key.

get_trademark_documents

Get the prosecution history (office actions, responses, etc.) for a trademark by serial number. Requires USPTO API key.


Coingecko

live

CoinGecko MCP — wraps CoinGecko free API (no auth required)

Data 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-coingecko": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/coingecko/mcp"
      ]
    }
  }
}
get_coin

Get detailed information about a cryptocurrency including price, market cap, volume, and description. Example: get_coin({ id: "bitcoin" }) or get_coin({ id: "ethereum" })

search_coins

Search for cryptocurrencies by name or symbol. Returns matching coins with their IDs. Example: search_coins({ query: "bitcoin" })

get_market_data

Get top cryptocurrencies ranked by market cap with current prices, 24h changes, and volume. Example: get_market_data({ vs_currency: "usd", limit: 10 })

get_trending

Get currently trending cryptocurrencies on CoinGecko based on user search activity. No parameters needed.


Eurostat

live

Eurostat MCP — wraps Eurostat Statistical Data API (no auth required)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-eurostat": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/eurostat/mcp"
      ]
    }
  }
}
get_dataset

Fetch statistical data from a Eurostat dataset by dataset code. Optionally filter by country (geo) and time period. Example: get_dataset({ dataset_code: "nama_10_gdp", geo: "DE", time: "2023" }). Comm

search_datasets

Search for Eurostat datasets by keyword. Returns dataset codes, titles, and update dates. Example: search_datasets({ query: "unemployment rate" })

list_datasets

List popular Eurostat datasets organized by theme. Returns a curated list of commonly used dataset codes with descriptions. No parameters needed.


Posthog

live

PostHog MCP — wraps PostHog Analytics API (app.posthog.com/api)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-posthog": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/posthog/mcp"
      ]
    }
  }
}
get_events

Fetch recent events from a PostHog project. Returns event names, timestamps, and properties. Example: get_events({ project_id: "12345", limit: 50, _apiKey: "phx_..." })

get_persons

Search for persons (users) in a PostHog project. Returns user profiles with properties. Example: get_persons({ project_id: "12345", search: "[email protected]", _apiKey: "phx_..." })

get_insights

List saved insights (charts, trends, funnels) for a PostHog project. Returns insight names, types, and configurations. Example: get_insights({ project_id: "12345", _apiKey: "phx_..." })


Sendgrid

live

SendGrid MCP — wraps SendGrid v3 API (api.sendgrid.com/v3)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sendgrid": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sendgrid/mcp"
      ]
    }
  }
}
get_stats

Fetch email sending statistics (delivered, opens, clicks, bounces, etc.) for a date range. Example: get_stats({ start_date: "2024-01-01", end_date: "2024-01-31", _apiKey: "SG.xxx" })

get_blocks

List email addresses that have been blocked by SendGrid. These are emails that were rejected due to receiving server issues. Example: get_blocks({ limit: 50, _apiKey: "SG.xxx" })

get_bounces

List email addresses that have bounced. Includes bounce reason and timestamp. Example: get_bounces({ limit: 100, _apiKey: "SG.xxx" })


Gnews

live

GNews MCP — Global news search via GNews API (gnews.io)

Data 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gnews": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gnews/mcp"
      ]
    }
  }
}
search_news

Search global news articles by keyword (e.g., "climate change", "AI regulation"). Returns title, description, content snippet, source, and publication date. Supports language and country filters.

top_headlines

Get top news headlines, optionally filtered by category (general, world, nation, business, technology, entertainment, sports, science, health). Returns title, description, source, and publication date


Federal Register MCP — US Federal Register API (free, no auth)

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-federal-register": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/federal-register/mcp"
      ]
    }
  }
}
search_documents

Search the US Federal Register for proposed rules, final rules, notices, and presidential documents. Returns title, abstract, agency, publication date, and links. Example: search_documents("artificial

get_document

Get full details for a Federal Register document by its document number (e.g., "2024-12345"). Returns title, abstract, full text link, agencies, dates, and docket information.

recent_rules

Get recently published final rules and regulations from the Federal Register. Returns title, abstract, agency, effective dates, and significance. Useful for tracking new regulations.


CourtListener MCP — Free Law Project's CourtListener API (free, no auth required for basic access)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-court-listener": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/court-listener/mcp"
      ]
    }
  }
}
search_opinions

Search US court opinions by keyword (e.g., "qualified immunity", "Fourth Amendment"). Returns case name, court, date, docket number, and text snippet. Covers federal and state courts.

search_dockets

Search US court dockets by keyword. Returns case name, court, filing date, docket number, nature of suit, and assigned judge. Covers PACER and RECAP archives.

get_opinion

Get a specific court opinion by its CourtListener ID. Returns the full opinion text, author, date, and download link.


OpenSanctions MCP — Global sanctions and PEP data (free, no auth required)

Data 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-open-sanctions": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/open-sanctions/mcp"
      ]
    }
  }
}
search_entities

Search global sanctions, watchlists, and PEP (politically exposed persons) databases. Returns matched entities with names, countries, datasets, and sanctions details. Example: search_entities("Vladimi

get_entity

Get full details for a sanctioned entity by its OpenSanctions ID. Returns all properties including names, addresses, identifiers, sanctions programs, and related entities.


Who Gho

live

WHO GHO MCP — World Health Organization Global Health Observatory (free, no auth)

Health 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-who-gho": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/who-gho/mcp"
      ]
    }
  }
}
get_indicators

Search or list WHO Global Health Observatory indicators. Returns indicator codes and names. Use the indicator code with get_data to retrieve actual values. Example: get_indicators("life expectancy") o

get_data

Get health data values for a WHO indicator code. Returns numeric values by country and year. Example: get_data("WHOSIS_000001", country="USA", year="2020"). Use get_indicators first to find the indica

list_countries

List all countries recognized by the WHO with their ISO codes. Useful for finding the correct country code to use with get_data.


OpenCorporates MCP — Global company registry data (free, no auth, rate limited)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-open-corporates": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/open-corporates/mcp"
      ]
    }
  }
}
search_companies

Search global company registries by name. Returns company name, jurisdiction, status, type, incorporation date, and registered address. Covers 140+ jurisdictions worldwide. Example: search_companies("

get_company

Get full details for a specific company by jurisdiction and company number. Returns registration details, officers, filings, and industry codes. Example: get_company("us_de", "4483789") for a Delaware

search_officers

Search company officers and directors by name. Returns officer name, position, company, start/end dates, and nationality. Example: search_officers("Elon Musk")


Open Fec

live

OpenFEC MCP — Federal Election Commission campaign finance data

FinanceGovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-open-fec": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/open-fec/mcp"
      ]
    }
  }
}
search_candidates

Search federal election candidates by name, state, or party. Returns candidate ID, name, party, office, state, district, and election years. Example: search_candidates("Biden", state="DE", party="DEM"

candidate_financials

Get campaign finance summary for a candidate by their FEC candidate ID (e.g., "P80001571"). Returns total receipts, disbursements, cash on hand, individual contributions, PAC contributions, and loans.

search_committees

Search political committees (PACs, Super PACs, party committees) by name. Returns committee ID, name, type, designation, party, treasurer, and associated candidates. Example: search_committees("ActBlu


Semantic Scholar MCP — Academic paper search and citation data (free, no auth)

DataScience 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-semantic-scholar": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/semantic-scholar/mcp"
      ]
    }
  }
}
search_papers

Search academic papers across all fields of science. Returns title, abstract, TL;DR summary, authors, citation count, year, journal, and open access PDF links. Example: search_papers("transformer atte

get_paper

Get full details for an academic paper by its Semantic Scholar paper ID, DOI, ArXiv ID, or other identifier. Returns title, abstract, TL;DR, authors, citations, references, open access link, and journ

get_author

Get an academic author profile by Semantic Scholar author ID. Returns name, affiliations, h-index, total citations, paper count, and recent publications. Use search_papers first to find author IDs.


ProPublica Nonprofit MCP — ProPublica Nonprofit Explorer API (free, no auth)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-propublica-nonprofit": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/propublica-nonprofit/mcp"
      ]
    }
  }
}
search_nonprofits

Search US nonprofits by name. Returns EIN, name, city, state, revenue, assets, and NTEE code. Example: search_nonprofits("red cross", "NY"). Use get_organization with the EIN for full details.

get_organization

Get full nonprofit details by EIN (Employer Identification Number). Returns organization info plus recent IRS filings with revenue, expenses, and assets. Example: get_organization(131710957).

get_filing

Get a specific IRS filing for a nonprofit. Returns financial data from one tax period including revenue, expenses, assets, and liabilities. Example: get_filing(131710957, 202112).


Opensky

live

OpenSky MCP — OpenSky Network API (free, no auth for anonymous access)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opensky": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opensky/mcp"
      ]
    }
  }
}
get_flights

Get all flights within a time interval (max 2 hours). Returns ICAO24 address, callsign, departure/arrival airports. Provide begin and end as Unix timestamps. Example: get_flights(1696118400, 169612560

get_aircraft

Get flights for a specific aircraft by its ICAO24 transponder address (hex string, e.g., "3c675a"). Returns departure/arrival airports and times. Optionally specify a time range.

get_states

Get current state vectors (live positions) of aircraft. Returns position, altitude, velocity, and heading for all aircraft currently tracked. Optionally filter by ICAO24 addresses.


College Scorecard MCP — US Department of Education College Scorecard API

GovernmentDataEnvironment 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-college-scorecard": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/college-scorecard/mcp"
      ]
    }
  }
}
search_schools

Search US colleges and universities by name. Returns school name, location, tuition, admission rate, student size, median earnings, and completion rate. Example: search_schools("MIT", "MA").

get_school

Get detailed info for a specific college by its College Scorecard ID. Returns tuition, admission rate, student size, median earnings after 10 years, completion rate, and median debt.


Open Food Facts MCP — Open Food Facts API (free, no auth)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-open-food-facts": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/open-food-facts/mcp"
      ]
    }
  }
}
search_products

Search food products by name or keyword. Returns product name, brand, nutrition facts (per 100g), Nutri-Score, NOVA group, allergens, and ingredients. Example: search_products("nutella", "spreads").

get_product

Get detailed food product info by barcode (EAN/UPC). Returns full nutrition facts, ingredients, Nutri-Score, allergens, and labels. Example: get_product("3017620422003") for Nutella.

get_categories

List popular food product categories from Open Food Facts. Returns category names and product counts. Useful for discovering what categories are available for filtering searches.


Nager Date

live

Nager.Date MCP — Public holiday and date utility API (free, no auth)

Data 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nager-date": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nager-date/mcp"
      ]
    }
  }
}
get_holidays

Get all public holidays for a country and year. Returns holiday names, dates, and types (public, bank, school, etc.). Example: get_holidays(2025, "US").

is_today_holiday

Check if today is a public holiday in a given country. Returns true/false. Example: is_today_holiday("US").

get_long_weekends

Get long weekends (3+ consecutive days off) for a country and year. Shows which weekends can become long breaks, including whether a "bridge day" (vacation day) is needed. Great for trip planning. Exa

list_countries

List all countries supported by the holiday API with their ISO country codes. Use these codes with get_holidays and other tools.


Geonames

live

GeoNames MCP — GeoNames geographical database API

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-geonames": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/geonames/mcp"
      ]
    }
  }
}
search_places

Search for places (cities, landmarks, regions) by name. Returns coordinates, country, population, and feature type. Example: search_places("Paris", "FR"). Use get_nearby to find places near a known lo

get_nearby

Find places near a given latitude/longitude. Returns nearby cities, landmarks, and features sorted by distance. Example: get_nearby(48.8566, 2.3522) for places near Paris.

get_timezone

Get timezone information for a latitude/longitude location. Returns timezone ID, GMT offset, DST offset, current local time, sunrise, and sunset. Example: get_timezone(40.7128, -74.0060) for New York.


ProPublica Congress MCP — ProPublica Congress API (v1)

GovernmentData 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-propublica-congress": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/propublica-congress/mcp"
      ]
    }
  }
}
get_members

List members of a chamber of Congress. Returns name, party, state, district, vote attendance, and party loyalty percentage. Example: get_members("senate", 118).

get_member

Get details for a specific member of Congress by their ProPublica member ID. Returns biography, current role, committee assignments, and voting record. Example: get_member("S001191").

search_bills

Search congressional bills by keyword. Returns bill ID, title, sponsor, status, and latest action. Example: search_bills("climate change", 118).

get_votes

Get recent votes in a chamber for a specific year and month. Returns vote question, result, vote counts (yes/no), and related bill info. Example: get_votes("senate", 2024, 3).


Carbon Interface MCP — Carbon Interface API (v1)

DataEnvironment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-carbon-interface": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/carbon-interface/mcp"
      ]
    }
  }
}
estimate_electricity

Estimate CO2 emissions from electricity usage. Returns carbon emissions in grams, kg, and metric tons. Example: estimate_electricity(500, "us", "kwh") for 500 kWh in the US.

estimate_flight

Estimate CO2 emissions from a flight. Provide number of passengers and flight legs (departure/arrival airport IATA codes). Returns per-passenger and total carbon emissions. Example: estimate_flight(2,

estimate_vehicle

Estimate CO2 emissions from driving a vehicle. Provide distance and a vehicle model ID (from Carbon Interface). Returns carbon emissions in grams, kg, and metric tons. Example: estimate_vehicle(100, "


Abuseipdb

live

AbuseIPDB MCP — wraps AbuseIPDB v2 API (api.abuseipdb.com/api/v2)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-abuseipdb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/abuseipdb/mcp"
      ]
    }
  }
}
check_ip

Check an IP address against the AbuseIPDB database. Returns abuse confidence score (0-100), ISP, usage type, country, number of reports, and last reported date. Example: check_ip("8.8.8.8").

report_ip

Report an abusive IP address to AbuseIPDB. Requires category IDs (e.g., "18,22" for DDoS + SSH brute force). Returns the updated abuse confidence score.

get_blacklist

Get the AbuseIPDB blacklist of the most-reported IP addresses. Returns IPs with their abuse confidence scores. Useful for building blocklists.


Shodan InternetDB MCP — wraps Shodan InternetDB (internetdb.shodan.io)

Utility 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-shodan-internetdb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/shodan-internetdb/mcp"
      ]
    }
  }
}
lookup_ip

Look up an IP address in the Shodan InternetDB. Returns open ports, hostnames, known vulnerabilities (CVEs), CPEs (software identifiers), and tags. Free, no API key needed. Example: lookup_ip("8.8.8.8


Phishtank

live

PhishTank MCP — wraps PhishTank API (checkurl.phishtank.com)

Data 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-phishtank": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/phishtank/mcp"
      ]
    }
  }
}
check_url

Check if a URL is a known phishing site in the PhishTank database. Returns whether it is a phish, verification status, and details URL. Example: check_url("http://suspicious-site.example.com/login").


Datagov

live

Data.gov MCP — wraps Data.gov CKAN API (catalog.data.gov/api/3)

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datagov": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datagov/mcp"
      ]
    }
  }
}
search_datasets

Search U.S. government open datasets on Data.gov by keyword. Returns titles, descriptions, organizations, formats, and download URLs. Example: search_datasets("climate change", organization: "noaa-gov

get_dataset

Get full metadata for a specific Data.gov dataset by its ID or name. Returns title, description, resources (download links), organization, tags, and update frequency.

list_organizations

List all organizations publishing datasets on Data.gov. Returns organization names and dataset counts. Useful for discovering data publishers.


Wayback

live

Wayback Machine MCP — wraps the Internet Archive Wayback Machine CDX API

Data 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wayback": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wayback/mcp"
      ]
    }
  }
}
search_url

Search the Wayback Machine CDX index for archived snapshots of a URL. Returns timestamps, HTTP status codes, MIME types, and archive URLs. Filter by date range. Example: search_url("example.com", from

check_availability

Check if a URL has been archived by the Wayback Machine and get the closest available snapshot. Returns the archive URL and timestamp if available.


Frankfurter MCP — wraps Frankfurter API (api.frankfurter.dev)

DeveloperData 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-frankfurter": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/frankfurter/mcp"
      ]
    }
  }
}
get_latest

Get the latest foreign exchange rates from the ECB. Returns rates relative to a base currency. Example: get_latest(base: "USD", symbols: "EUR,GBP,JPY").

get_historical

Get exchange rates for a specific historical date. ECB rates available from 1999-01-04 onward. Example: get_historical(date: "2024-01-15", base: "USD").

get_timeseries

Get exchange rates over a date range for trend analysis. Returns daily rates between start and end dates. Example: get_timeseries(start_date: "2024-01-01", end_date: "2024-03-31", base: "USD", symbols

list_currencies

List all currencies supported by the Frankfurter API (ECB reference rates). Returns currency codes and full names.


Sec Xbrl

live

SEC XBRL MCP — wraps SEC EDGAR XBRL API (data.sec.gov)

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sec-xbrl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sec-xbrl/mcp"
      ]
    }
  }
}
get_company_facts

Get all XBRL financial facts for a company by CIK number. Returns all reported financial data (revenue, net income, assets, etc.) across all filings. Example: get_company_facts(cik: "320193") for Appl

get_company_concept

Get a specific financial metric for a company across all filings. Use this to track revenue, net income, or any XBRL tag over time. Example: get_company_concept(cik: "320193", taxonomy: "us-gaap", tag

search_filings

Search recent SEC filings for a company by CIK. Optionally filter by filing type (10-K, 10-Q, 8-K, etc.). Returns filing dates, types, and accession numbers.


Cdc

live

CDC MCP — wraps CDC open data via Socrata API (data.cdc.gov)

GovernmentData 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cdc": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cdc/mcp"
      ]
    }
  }
}
search_datasets

Search CDC public health datasets by keyword. Returns dataset names, descriptions, IDs, and update dates. Example: search_datasets("influenza surveillance").

get_dataset

Get rows from a specific CDC dataset by its Socrata dataset ID (four-by-four format like "xxxx-xxxx"). Returns data rows with all columns. Use search_datasets first to find the ID.


CORE Research MCP — wraps CORE API (api.core.ac.uk/v3)

DataScience 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-core-research": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/core-research/mcp"
      ]
    }
  }
}
search_papers

Search open-access research papers by keyword (e.g., "machine learning healthcare"). Returns titles, authors, abstracts, DOIs, and download links. Useful for literature reviews and finding academic so

get_paper

Get full metadata for a research paper by its CORE ID. Returns title, authors, abstract, full text link, DOI, publisher, year, and citation count.


CountryStateCity MCP — wraps CountryStateCity API (api.countrystatecity.in/v1)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-country-state-city": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/country-state-city/mcp"
      ]
    }
  }
}
list_countries

List all countries with ISO codes, capitals, phone codes, currencies, and regions. Returns ~250 countries. Useful for building dropdowns or validating country data.

get_states

Get all states or provinces for a country by ISO2 code (e.g., "US", "IN", "BR"). Returns state names, codes, and types.

get_cities

Get cities for a country, optionally filtered by state. Pass country_code (e.g., "US") and optionally state_code (e.g., "CA") to narrow results.


Metals Api

live

Metals API MCP — wraps Metals-API (metals-api.com)

Data 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-metals-api": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/metals-api/mcp"
      ]
    }
  }
}
get_latest

Get the latest precious and base metal spot prices (gold, silver, platinum, palladium, copper, etc.). Prices are per troy ounce. Optionally specify base currency and metal symbols.

get_historical

Get metal prices for a specific historical date. Returns spot prices per troy ounce for that day. Useful for tracking price changes or computing returns.


Mediastack

live

Mediastack MCP — wraps Mediastack API (api.mediastack.com/v1)

Data 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mediastack": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mediastack/mcp"
      ]
    }
  }
}
search_news

Search news articles by keywords. Optionally filter by category (business, technology, science, health, sports, entertainment, general), country (ISO2 codes), or language. Returns headlines, descripti

latest_news

Get the latest news headlines. Optionally filter by category, country, or language. Returns the most recent articles with titles, descriptions, sources, and URLs.


Rentcast

live

Rentcast MCP — wraps Rentcast API (api.rentcast.io/v1)

Data 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-rentcast": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/rentcast/mcp"
      ]
    }
  }
}
get_rent_estimate

Get a rental price estimate for a US property address. Returns estimated monthly rent, price range, and comparable rental data. Example: "1234 Main St, Austin, TX 78701".

get_property

Get property details for a US address. Returns bedrooms, bathrooms, square footage, lot size, year built, property type, and owner info when available.


Healthdata

live

HealthData.gov MCP — wraps HealthData.gov CKAN API (free, no auth)

GovernmentHealthData 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-healthdata": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/healthdata/mcp"
      ]
    }
  }
}
search_datasets

Search HealthData.gov for public health datasets by keyword (e.g., "COVID hospitalizations", "Medicare spending", "opioid prescriptions"). Returns dataset titles, descriptions, organizations, and reso

get_dataset

Get full metadata for a HealthData.gov dataset by its package ID. Returns title, description, organization, resources (CSV/JSON download links), update frequency, and tags.


Wikidata

live

Wikidata MCP — wraps Wikidata API (wikidata.org/w/api.php)

Data 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wikidata": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wikidata/mcp"
      ]
    }
  }
}
search_entities

Search Wikidata entities by label or alias (e.g., "Albert Einstein", "Python programming language", "Tokyo"). Returns entity IDs, labels, descriptions, and aliases. Useful for finding the Wikidata ID

get_entity

Get full Wikidata entity by ID (e.g., "Q42" for Douglas Adams, "Q5" for human, "Q1764" for Budapest). Returns labels, descriptions, aliases, claims/statements (properties and values), and sitelinks.


Finnhub

live

Finnhub MCP — wraps Finnhub Stock API (finnhub.io)

FinanceData 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-finnhub": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/finnhub/mcp"
      ]
    }
  }
}
get_quote

Get a real-time stock quote including current price, change, and volume. Example: get_quote({ symbol: "AAPL", _apiKey: "your-key" })

get_company_news

Get recent news articles about a company within a date range. Returns headline, summary, source, and URL. Example: get_company_news({ symbol: "AAPL", from: "2024-01-01", to: "2024-01-31", _apiKey: "yo

get_earnings_calendar

Get upcoming and recent earnings reports across the market. Optionally filter by date range. Example: get_earnings_calendar({ from: "2024-01-01", to: "2024-03-31", _apiKey: "your-key" })

search_symbol

Search for stock ticker symbols by company name or keyword. Returns matching symbols with descriptions. Example: search_symbol({ query: "apple", _apiKey: "your-key" })


Nasa

live

NASA MCP — wraps NASA Open APIs (api.nasa.gov)

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nasa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nasa/mcp"
      ]
    }
  }
}
get_apod

Get the NASA Astronomy Picture of the Day with explanation. Optionally specify a date. Example: get_apod({ date: "2024-01-15", _apiKey: "DEMO_KEY" })

get_asteroids

Get near-Earth asteroids approaching within a date range (max 7 days). Returns size, velocity, and miss distance. Example: get_asteroids({ start_date: "2024-01-01", end_date: "2024-01-07", _apiKey: "D

get_mars_photos

Get photos taken by Mars rovers (Curiosity, Opportunity, Spirit). Filter by Martian sol and camera. Example: get_mars_photos({ sol: 1000, camera: "FHAZ", _apiKey: "DEMO_KEY" })


USGS Earthquake MCP — wraps USGS Earthquake Hazards API (no auth required)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-usgs-earthquake": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/usgs-earthquake/mcp"
      ]
    }
  }
}
get_recent

Get recent earthquakes worldwide, optionally filtered by minimum magnitude. Returns location, magnitude, depth, and time. Example: get_recent({ minmagnitude: 4.5, limit: 10 })

search_earthquakes

Search for earthquakes by date range, magnitude, and geographic location. Supports circular area search by lat/lon/radius. Example: search_earthquakes({ starttime: "2024-01-01", endtime: "2024-01-31",

get_event

Get detailed information about a specific earthquake event by its USGS event ID. Example: get_event({ eventid: "us7000m0xl" })


Imf

live

IMF MCP — wraps IMF SDMX JSON REST API (dataservices.imf.org)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-imf": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/imf/mcp"
      ]
    }
  }
}
get_datasets

List all available IMF databases/datasets. Returns database IDs and names you can use with get_data and search_indicators. Example: call with no arguments to browse available datasets like IFS (Intern

get_data

Fetch IMF time-series data for an indicator and country. Uses SDMX CompactData format. Example: get_data({ database_id: "IFS", frequency: "A", indicator: "NGDP_XDC", country: "US", start: "2018", end:

search_indicators

Search or list indicator codes available in an IMF database. Returns the code list (dimensions) for a dataset. Example: search_indicators({ database_id: "IFS", query: "GDP" }) finds GDP-related indica


Mixpanel

live

Mixpanel MCP — wraps Mixpanel Data Export API (mixpanel.com/api)

TradeData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mixpanel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mixpanel/mcp"
      ]
    }
  }
}
get_events

Query event data from Mixpanel for a date range. Returns event counts and properties. Example: get_events({ from_date: "2024-01-01", to_date: "2024-01-31", event: "Sign Up", _apiKey: "your_api_secret"

get_funnels

Get funnel conversion data from Mixpanel. Shows step-by-step conversion rates. Example: get_funnels({ funnel_id: "12345", from_date: "2024-01-01", to_date: "2024-01-31", _apiKey: "your_api_secret" })

get_retention

Get user retention cohort data from Mixpanel. Shows how many users return over time. Example: get_retention({ from_date: "2024-01-01", to_date: "2024-01-31", _apiKey: "your_api_secret" })


Plaid

live

Plaid MCP — wraps Plaid Sandbox API (sandbox.plaid.com)

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-plaid": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/plaid/mcp"
      ]
    }
  }
}
get_accounts

List all linked bank accounts for an access token. Returns account names, types, balances, and masks. Example: get_accounts({ access_token: "access-sandbox-xxx", _apiKey: "client_id:secret" })

get_transactions

Fetch bank transactions for a date range. Returns transaction names, amounts, categories, and dates. Example: get_transactions({ access_token: "access-sandbox-xxx", start_date: "2024-01-01", end_date:

get_balance

Get real-time account balances for linked accounts. Returns current, available, and limit balances. Example: get_balance({ access_token: "access-sandbox-xxx", _apiKey: "client_id:secret" })


arXiv

live

arXiv preprint server — search and fetch papers across physics, math, CS, quant bio, statistics, econ, and more. No auth.

ScienceResearch 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arxiv": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arxiv/mcp"
      ]
    }
  }
}
search_papers requires: query

Search arXiv preprints. Plain-text or field-prefixed queries (au:, ti:, abs:, cat:, all:). Combine with AND, OR, ANDNOT. Returns id, title, authors, abstract, categories, published date, PDF URL.

query required string Query string with optional field prefixes
max_results optional number 1-100 (default 10)
sort_by optional string relevance | lastUpdatedDate | submittedDate
sort_order optional string ascending | descending
get_paper requires: arxiv_id

Fetch a single arXiv paper by ID (e.g., "2310.06825" or legacy "cs.CL/0301001").

arxiv_id required string arXiv identifier

Citizen-science species observations — observation search, taxa lookup, top species at a place. No auth.

ScienceBiodiversity 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-inaturalist": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/inaturalist/mcp"
      ]
    }
  }
}
search_observations

Search citizen-science observations. Filter by taxon name (common or scientific), place, year, threatened status, or quality grade. Auto-resolves taxon and place names. Returns photographed sightings with coordinates and observer info.

taxon_name optional string Scientific or common name
place optional string Place name (auto-resolved)
year optional number Filter to a year
threatened optional boolean IUCN-threatened only
quality_grade optional string casual | needs_id | research (default research)
per_page optional number 1-200 (default 20)
search_taxa requires: query

Search iNaturalist taxa by name. Returns taxon ID, rank, ancestry, conservation status, photo.

query required string Common or scientific name
rank optional string Restrict to a rank
per_page optional number 1-30 (default 10)
top_species requires: place

Most-observed species in a place over an optional date range. Auto-resolves place name.

place required string Place name
year optional number Optional year filter
per_page optional number 1-50 (default 20)

OWID indicators — curated catalog of high-signal global datasets (energy, climate, health, demographics, economy). No auth.

DataStatistics 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-owid": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/owid/mcp"
      ]
    }
  }
}
list_popular_indicators

List curated OWID indicators (slug + title) grouped by category.

category optional string Optional category filter
fetch_indicator requires: slug

Fetch tidy long-format data for an OWID indicator by slug. Returns {entity, year, value} rows.

slug required string OWID chart slug
country optional string Filter to a single entity
since_year optional number Drop rows before this year
until_year optional number Drop rows after this year
limit optional number Cap rows (default 5000)
get_indicator_metadata requires: slug

Fetch metadata for an OWID indicator: title, units, source, last updated.

slug required string OWID chart slug

OECD

live

OECD data — international socio-economic statistics across 38 countries (jobs, prices, tax, health, education, environment). SDMX 2.1 API, no auth.

DataEconomyGovernment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-oecd": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/oecd/mcp"
      ]
    }
  }
}
list_curated_flows

List pre-vetted OECD dataflows grouped by topic (gdp, labour, prices, finance, households, health, demographics, projections, tax, education, environment, technology).

topic optional string Optional topic filter
search_dataflows requires: query

Search OECD's SDMX dataflow registry by keyword. Returns flow_refs ready to pass to fetch_dataset.

query required string Keyword
agency optional string Optional agency filter (e.g., OECD.ECO, OECD.ENV)
limit optional number 1-100 (default 25)
fetch_dataset requires: flow_ref

Fetch tidy rows from any OECD dataflow. The key is a dot-separated dimension filter (or empty for all). Periods like "2020-Q1" or "2020".

flow_ref required string SDMX dataflow reference
key optional string Dimension key or empty
start_period optional string Inclusive start
end_period optional string Inclusive end
limit optional number Cap rows (default 5000)

GLEIF

live

Global Legal Entity Identifier Foundation — canonical 20-character LEI lookup and corporate hierarchy for ~2.5M financial-market entities. No auth.

FinanceIdentity 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gleif": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gleif/mcp"
      ]
    }
  }
}
search_lei requires: query

Search legal entities by name. Returns matched entities with 20-char LEI, jurisdiction, status, BIC/ISIN cross-references.

query required string Legal entity name
country optional string ISO 3166-1 alpha-2 country code
status optional string ACTIVE | LAPSED | INACTIVE | PENDING | NULL
page_size optional number 1-200 (default 25)
get_lei requires: lei

Full Level 1 LEI record: legal name, addresses, entity category, legal form, registration authority, parent LEI.

lei required string 20-character LEI
get_lei_relationships requires: lei

Level 2 corporate hierarchy: direct parent, ultimate parent, direct children.

lei required string 20-character LEI

Every NIH-funded research grant — PI, institution, fiscal year, award amount, abstract, mesh terms, congressional district. No auth.

GovernmentResearchHealth 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nih-reporter": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nih-reporter/mcp"
      ]
    }
  }
}
search_grants

Filter NIH projects by free-text, PI, organization, fiscal year, state, or institute code (NCI, NHLBI, NIAID, etc.).

query optional string Free-text query
pi_name optional string PI name part
organization optional string Institution name
fiscal_year optional number FY (e.g., 2024)
state optional string US state code
ic optional string NIH IC code (e.g., NCI, NHLBI)
limit optional number 1-500 (default 25)
offset optional number Pagination offset
get_project requires: appl_id

Full project record by application ID, including complete abstract.

appl_id required number NIH application ID
search_publications

Search publications acknowledging NIH funding by PMID, appl_id, or core project number.

pmids optional string Comma-separated PubMed IDs
appl_ids optional string Comma-separated application IDs
core_project_nums optional string Comma-separated core project numbers
limit optional number 1-500 (default 25)
offset optional number Pagination offset

NSF Awards

live

National Science Foundation award database — ~$10B/yr of funded research across physical sciences, engineering, CS, math, education. No auth.

GovernmentResearchScience 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nsf-awards": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nsf-awards/mcp"
      ]
    }
  }
}
search_awards

Filter NSF awards by keyword, PI, awardee, program, US state/country, date range.

keyword optional string Title + abstract search
pi_name optional string PI full or last name
awardee optional string Awardee institution
program optional string NSF program name
state optional string US state code
country optional string Country code
date_start optional string MM/DD/YYYY
date_end optional string MM/DD/YYYY
limit optional number 1-25 (NSF cap)
offset optional number Pagination offset
get_award requires: award_id

Full record by award ID, including abstract and project outcomes report.

award_id required string NSF award ID

Grants.gov

live

Open federal grant opportunities — every current/forecasted funding opportunity across all US agencies. No auth.

GovernmentFunding 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-grants-gov": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/grants-gov/mcp"
      ]
    }
  }
}
search_opportunities

Filter open opportunities by keyword, status, agency code, funding category, assistance listing number (ALN/CFDA).

keyword optional string Full-text query
status optional string forecasted | posted | closed | archived (pipe-combine ok)
agencies optional string Comma-separated agency codes
funding_categories optional string Comma-separated category codes
aln optional string Assistance Listing Number (e.g., 10.001)
limit optional number 1-1000 (default 25)
offset optional number 0-based start record
get_opportunity requires: opportunity_id

Full opportunity record: synopsis, eligibility, award ceiling/floor, attachments, contact info.

opportunity_id required number Numeric opportunity ID

GDELT

live

Global Database of Events, Language, and Tone — 100+ languages, 15-min refresh. Article search, tone timelines, volume timelines. No auth.

NewsEvents 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gdelt": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gdelt/mcp"
      ]
    }
  }
}
search_articles requires: query

Recent matching articles. Supports advanced syntax (sourcecountry:, sourcelang:, theme:, near:).

query required string GDELT query string
timespan optional string e.g., "24h", "7d", "1m", "custom"
startdatetime optional string YYYYMMDDHHMMSS UTC
enddatetime optional string YYYYMMDDHHMMSS UTC
sort optional string HybridRel | DateDesc | DateAsc | ToneDesc | ToneAsc
max_records optional number 1-250 (default 25)
timeline_tone requires: query

Daily average tone (-100..+100) over time for a GDELT query.

query required string GDELT query string
timespan optional string Default 1m
startdatetime optional string YYYYMMDDHHMMSS
enddatetime optional string YYYYMMDDHHMMSS
timeline_volume requires: query

Daily article volume (% of total news) over time for a GDELT query.

query required string GDELT query string
timespan optional string Default 1m
startdatetime optional string YYYYMMDDHHMMSS
enddatetime optional string YYYYMMDDHHMMSS

ACLED

live

Armed Conflict Location & Event Data — political violence, protests, strategic developments. Requires API key + registered email.

GeopoliticsEvents 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-acled": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/acled/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

BYO only. ACLED requires manual API-access activation on each registered account (email [email protected] after registering). Once activated, supply myACLED email + password via query params; the pack exchanges them for a 24h access token cached in memory.

Config with credentials
{
  "mcpServers": {
    "pipeworx-acled": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/acled/mcp?_email=you%40example.com&_password=your_password"
      ]
    }
  }
}
search_events

Filter ACLED events by country, region, event type, actor, ISO code, date range, fatalities.

country optional string Country name(s), pipe-separated for OR
region optional string ACLED region
event_type optional string Battles | Protests | Riots | etc.
sub_event_type optional string ACLED sub-event type
actor optional string Match actor1 (substring)
iso optional number ISO 3166-1 numeric code
event_date_from optional string YYYY-MM-DD
event_date_to optional string YYYY-MM-DD
year optional number Calendar year
fatalities_min optional number Minimum fatalities
limit optional number 1-5000 (default 100)
event_counts_by_country

Aggregate event and fatality counts by country over a date range.

event_date_from optional string YYYY-MM-DD
event_date_to optional string YYYY-MM-DD
region optional string Optional region
event_type optional string Optional event-type
limit optional number Cap underlying events (default 5000)

UK statutory company registry — search, officers, filings, persons with significant control. Free key required.

GovernmentFinance 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-companies-house": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/companies-house/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Companies House requires a free API key. Pass _apiKey on the gateway URL or register a developer key directly with HMRC.

Config with credentials
{
  "mcpServers": {
    "pipeworx-companies-house": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/companies-house/mcp?_apiKey=your_ch_key"
      ]
    }
  }
}
search_companies requires: query

Search UK companies by name.

query required string Company name
items_per_page optional number 1-100 (default 20)
start_index optional number Pagination offset
get_company requires: company_number

Full company profile by company number.

company_number required string UK company number
get_officers requires: company_number

Directors / secretaries for a UK company.

company_number required string UK company number
items_per_page optional number 1-100
start_index optional number Pagination offset
register_type optional string directors | secretaries | llp-members
get_filings requires: company_number

Filing history for a UK company.

company_number required string UK company number
category optional string Optional filter (accounts, confirmation-statement, officers, etc.)
items_per_page optional number 1-100
start_index optional number Pagination offset
get_persons_with_significant_control requires: company_number

PSC records for a UK company (beneficial owners).

company_number required string UK company number
items_per_page optional number 1-100
start_index optional number Pagination offset

PermID

live

Refinitiv / LSEG Permanent Identifier — open canonical IDs for organizations, instruments, quotes, people. Free 5,000 req/day.

FinanceIdentity 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-permid": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/permid/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

BYO only. Requires an LSEG account at permid.org. The signup flow is multi-step but the API itself is free (5,000 req/day). Pass _apiKey on the gateway URL.

Config with credentials
{
  "mcpServers": {
    "pipeworx-permid": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/permid/mcp?_apiKey=your_permid_token"
      ]
    }
  }
}
search_entities requires: query

Search orgs / instruments / people / quotes by name.

query required string Free-text search
entity_type optional string organization | person | instrument | quote | all
limit optional number 1-100 (default 20)
get_entity requires: permid

Full JSON-LD record by PermID.

permid required string PermID numeric string

VirusTotal

live

File, URL, domain, and IP reputation across 70+ AV engines. BYO key (free tier 4 req/min, 500/day).

Security 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-virustotal": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/virustotal/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

BYO key only — free tier is tight (4 req/min, 500/day). Pass _apiKey on the gateway URL.

Config with credentials
{
  "mcpServers": {
    "pipeworx-virustotal": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/virustotal/mcp?_apiKey=your_vt_key"
      ]
    }
  }
}
lookup_file requires: hash

Reputation for sha256 / sha1 / md5.

hash required string SHA-256 / SHA-1 / MD5
lookup_url requires: url

Reputation for a URL.

url required string Full URL including scheme
lookup_domain requires: domain

Reputation for a domain.

domain required string FQDN, no scheme
lookup_ip requires: ip

Reputation for an IPv4 address.

ip required string IPv4 address

GreyNoise

live

Separates internet background noise (mass scanners, known-good services) from targeted activity. Community API.

Security 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-greynoise": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/greynoise/mcp"
      ]
    }
  }
}
ip_context requires: ip

Noise / RIOT classification, name, last seen, deep link.

ip required string IPv4 address

Password breach checks (k-anonymity, no key) + breach catalog (no key) + breached-account lookup (paid BYO key).

Security 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hibp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hibp/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Password checks and breach-catalog tools are free with no key. check_account requires a paid HIBP subscription key passed as _apiKey.

Config with credentials
{
  "mcpServers": {
    "pipeworx-hibp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hibp/mcp?_apiKey=your_hibp_key"
      ]
    }
  }
}
check_password requires: password

k-anonymity password check; only the first 5 hex chars of the SHA-1 leave the worker.

password required string Password to check
check_password_prefix requires: sha1_prefix

Direct k-anonymity: send a 5-char SHA-1 prefix, receive suffixes and counts.

sha1_prefix required string 5 hex chars
list_breaches

All publicly-known breaches, optionally filtered by domain.

domain optional string Optional domain
get_breach requires: name

Single breach by name.

name required string Breach name
list_data_classes

Canonical data-class tags.

check_account requires: account

REQUIRES PAID KEY. Breaches an email account appears in.

account required string Email address
truncate optional boolean Return only breach names (default true)

Open Threat Exchange — community threat-intel pulses + per-indicator context (IPv4 / domain / URL / file hash).

Security 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-alienvault-otx": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/alienvault-otx/mcp"
      ]
    }
  }
}
search_pulses requires: query

Keyword search across community threat-intel pulses.

query required string Search term
limit optional number 1-50 (default 20)
page optional number 1-based page
get_pulse requires: pulse_id

Full pulse with indicators.

pulse_id required string OTX pulse ID
lookup_indicator requires: indicator

Pulses referencing an IOC. Type auto-detected when omitted.

indicator required string IPv4 / domain / URL / hash
type optional string Force type

Etherscan

live

Multichain EVM block explorer (Etherscan V2) — 50+ chains under one key. Balances, txs, contract ABI/source.

CryptoBlockchain 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-etherscan": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/etherscan/mcp"
      ]
    }
  }
}
get_balance requires: address

Native-token balance for an address on any supported chain.

address required string 0x address
chain optional string Slug or numeric chain ID (default ethereum)
get_token_balance requires: address, contract_address

ERC-20 balance for an address against a specific token contract.

address required string Holder address
contract_address required string ERC-20 contract
chain optional string Slug or numeric chain ID
list_transactions requires: address

normal / internal / erc20 / erc721 / erc1155 transactions for an address.

address required string Address
type optional string normal | internal | erc20 | erc721 | erc1155
chain optional string Slug or chain ID
startblock optional number Start block
endblock optional number End block
sort optional string asc | desc
offset optional number Page size (default 25)
page optional number Page (default 1)
get_contract_abi requires: address

Verified ABI for a contract.

address required string Contract address
chain optional string Slug or chain ID
get_contract_source requires: address

Verified source code, compiler metadata, license.

address required string Contract address
chain optional string Slug or chain ID

Independent web index — fewer SERP-poisoning surprises, AI-friendly TOS. Requires a Brave Search subscription.

Search 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-brave-search": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/brave-search/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Brave Search no longer offers a free tier — every plan is paid. You must subscribe and BYO the key. Pass _apiKey on the gateway URL.

Config with credentials
{
  "mcpServers": {
    "pipeworx-brave-search": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/brave-search/mcp?_apiKey=your_brave_key"
      ]
    }
  }
}
web_search requires: q

General web search.

q required string Query
count optional number 1-20 (default 10)
offset optional number 0-9 page offset
country optional string 2-letter country code
search_lang optional string 2-letter language
safesearch optional string strict | moderate | off
freshness optional string pd | pw | pm | py | YYYY-MM-DDtoYYYY-MM-DD
news_search requires: q

News-specific search with publication metadata.

q required string Query
count optional number 1-20
offset optional number 0-9
country optional string 2-letter country code
search_lang optional string 2-letter language
freshness optional string pd | pw | pm | py

Computational, factual, and quantitative answers — math, units, science, geography, history. Free 2k/mo.

ComputeReference 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wolfram-alpha": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wolfram-alpha/mcp"
      ]
    }
  }
}
short_answer requires: query

Single terse plain-text answer.

query required string Natural-language query
units optional string metric | imperial
full_query requires: query

Structured pods with multi-step results.

query required string Natural-language query
units optional string metric | imperial
include_pods optional string Comma-separated pod IDs
format optional string plaintext (default) | plaintext,image

Unpaywall

live

Find free legal copies of paywalled papers by DOI. No API key — uses a polite-pool email.

Research 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-unpaywall": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/unpaywall/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Unpaywall requires a contact email (polite-pool identifier). The gateway can supply one, or BYO via _email query param.

Config with credentials
{
  "mcpServers": {
    "pipeworx-unpaywall": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/unpaywall/mcp?_email=you%40example.com"
      ]
    }
  }
}
get_oa requires: doi

OA status + best free copy for a DOI.

doi required string DOI
search_papers requires: query

Keyword search; optionally OA-only.

query required string Search term
is_oa optional boolean OA only
page optional number 1-based page

Programmatic queries against OpenStreetMap. Raw Overpass QL plus helpers for "POIs near a point" and "all matches in a bbox". No auth.

GeoOpen Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-overpass": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/overpass/mcp"
      ]
    }
  }
}
query requires: qql

Raw Overpass QL query against OSM.

qql required string Overpass QL query
pois_near requires: latitude, longitude, tag

POIs in a radius around a lat/lon, filtered by OSM tag.

latitude required number Center latitude
longitude required number Center longitude
radius_m optional number 1-10000 metres (default 1000)
tag required string OSM tag (e.g., "amenity=cafe", "shop", "tourism=museum")
limit optional number Max results (1-500, default 100)
places_in_bbox requires: south, west, north, east, tag

POIs inside a bounding box.

south required number Min latitude
west required number Min longitude
north required number Max latitude
east required number Max longitude
tag required string OSM tag filter
limit optional number Max results (1-1000, default 200)

Internet Archive's open book metadata — 50M+ editions, author bios, work/edition split, subjects, covers. Stronger than Google Books for out-of-print titles.

BooksReference 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-open-library": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/open-library/mcp"
      ]
    }
  }
}
search_books requires: query

Title/author/subject search.

query required string Search string
limit optional number 1-100 (default 20)
page optional number 1-based page
get_book_by_isbn requires: isbn

Book by ISBN-10 or ISBN-13.

isbn required string ISBN-10 or ISBN-13
get_work requires: work_id

Canonical work record (book across editions).

work_id required string OL work ID (e.g., OL45804W)
get_author requires: author_id

Author bio + bibliography links.

author_id required string OL author ID (e.g., OL34184A)

TVMaze

live

TV show metadata, episode schedules, cast. Complements the movies pack with TV-specific coverage.

MediaTV 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tvmaze": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tvmaze/mcp"
      ]
    }
  }
}
search_shows requires: query

Text search across TV shows.

query required string Show name
get_show requires: show_id

Full show record with optional embeds (episodes / cast / seasons).

show_id required number TVMaze show ID
embed_episodes optional boolean Include episodes
embed_cast optional boolean Include cast
embed_seasons optional boolean Include seasons
list_episodes requires: show_id

All episodes of a show.

show_id required number TVMaze show ID
specials optional boolean Include specials
get_schedule

What's airing on a country/day.

country optional string 2-letter country code (default US)
date optional string YYYY-MM-DD (default today)
search_people requires: query

Actors / people search.

query required string Person name

Authoritative US weather: 7-day + hourly forecasts, severe-weather alerts, station observations. No auth (UA-tagged). US locations only.

WeatherGovernment 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nws": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nws/mcp"
      ]
    }
  }
}
get_forecast requires: latitude, longitude

7-day text forecast for a US lat/lon.

latitude required number US latitude
longitude required number US longitude
get_hourly_forecast requires: latitude, longitude

Hourly forecast for a US lat/lon.

latitude required number US latitude
longitude required number US longitude
max_hours optional number Cap hours (default 24)
get_alerts

Active watches/warnings/advisories. Filter by state, point, severity, urgency, or event.

area optional string 2-letter state code
latitude optional number Point latitude
longitude optional number Point longitude
severity optional string Extreme | Severe | Moderate | Minor | Unknown
urgency optional string Immediate | Expected | Future | Past | Unknown
event optional string Event type filter
limit optional number Cap (default 50, max 500)
get_observation requires: station_id

Latest observation from an ICAO station.

station_id required string 4-char ICAO station (e.g., KSFO)

Meteostat

live

Historical weather from 11,000+ stations via free bulk CSVs. Station-level readings (no interpolation). No auth.

WeatherHistorical 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-meteostat": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/meteostat/mcp"
      ]
    }
  }
}
get_daily_history requires: station_id, start_date, end_date

Daily readings between two dates for a Meteostat station.

station_id required string Meteostat numeric station ID
start_date required string YYYY-MM-DD
end_date required string YYYY-MM-DD
get_monthly_normals requires: station_id

Long-run monthly climate normals for a station.

station_id required string Meteostat numeric station ID

DataCite

live

DOIs for research datasets, software, and samples — Crossref does papers, DataCite does non-paper research outputs.

ResearchData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datacite": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datacite/mcp"
      ]
    }
  }
}
search_dois

Full-text + faceted search across DataCite DOIs.

query optional string Free-text query
resource_type optional string Dataset | Software | Text | Image | Sound | Other
year optional number Publication year
publisher optional string Publisher filter
affiliation optional string Creator affiliation
page_size optional number 1-1000 (default 25)
page optional number 1-based page
get_doi requires: doi

Full record for one DataCite DOI.

doi required string DOI string
list_repositories

Registered DataCite data repositories.

query optional string Repository name filter
page_size optional number 1-1000
page optional number Page

PubChem

live

NIH chemistry compound database — 100M+ molecules with structures, properties, pharmacology. No auth.

ScienceChemistryHealth 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pubchem": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pubchem/mcp"
      ]
    }
  }
}
search_by_name requires: name

Resolve a chemical/drug name to PubChem CIDs.

name required string Common, IUPAC, or brand name
max_results optional number Cap (default 5)
get_compound requires: cid

Standard properties (formula, MW, IUPAC, SMILES, InChI, TPSA, XLogP, etc.).

cid required number PubChem Compound ID
get_synonyms requires: cid

All known names for a CID.

cid required number PubChem Compound ID
max_results optional number Cap (default 50)
get_classification requires: cid

Pharmacology classification tree.

cid required number PubChem Compound ID

USGS Volcano Hazards Program — alert levels and notices for ~170 US volcanoes. Sister to usgs-earthquake. No auth.

ScienceGovernmentGeology 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-usgs-volcano": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/usgs-volcano/mcp"
      ]
    }
  }
}
list_volcanoes

Every US volcano with alert level + aviation color code.

observatory optional string AVO | CVO | YVO | HVO | CalVO (optional)
list_elevated

Only volcanoes currently above Normal/Green.

list_notices

Recent volcano activity notices (VAN / VONA).

volcano_slug optional string USGS volcano slug (optional)
limit optional number Cap (default 50)

POI lookup with categories, popularity, and rich tags. Free 100k req/mo. Pairs with overpass for OSM cross-validation.

GeoPOI 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-foursquare": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/foursquare/mcp"
      ]
    }
  }
}
search_places

Text/category search with location anchor (near, lat/lon, or bbox).

query optional string Free-text query
near optional string Place name anchor
latitude optional number Center latitude
longitude optional number Center longitude
radius_m optional number 1-100000 metres
categories optional string Foursquare category IDs (comma-sep)
sort optional string RELEVANCE | DISTANCE | POPULARITY | RATING
limit optional number 1-50 (default 10)
get_place requires: fsq_id

Full record by fsq_id.

fsq_id required string Foursquare place ID
nearby_places requires: latitude, longitude

POIs near a lat/lon without a query.

latitude required number Latitude
longitude required number Longitude
radius_m optional number Default 500
categories optional string Category filter
limit optional number 1-50 (default 20)

National Park Service — parks, alerts, campgrounds, activities. Free key, generous limits.

GovernmentTravel 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nps": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nps/mcp"
      ]
    }
  }
}
list_parks

List/search NPS parks.

query optional string Free-text search
state optional string 2-letter state code(s)
park_code optional string parkCode(s) comma-separated
limit optional number 1-500 (default 25)
start optional number Offset
get_park requires: park_code

Full park record by parkCode.

park_code required string 4-letter parkCode
list_alerts

Current park alerts.

park_code optional string parkCode (optional)
state optional string State code (optional)
query optional string Free-text
limit optional number 1-500
list_campgrounds

Campgrounds in a park or state.

park_code optional string parkCode (optional)
state optional string State code (optional)
query optional string Free-text
limit optional number 1-500
list_things_to_do

Recommended activities.

park_code optional string parkCode (optional)
state optional string State code (optional)
query optional string Free-text
limit optional number 1-500

Real-time AQI from 12,000+ stations worldwide. Free key.

EnvironmentHealth 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-waqi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/waqi/mcp"
      ]
    }
  }
}
get_aqi_by_city requires: city

AQI for a city by name.

city required string City slug or name
get_aqi_by_location requires: latitude, longitude

AQI for the station nearest a lat/lon.

latitude required number Latitude
longitude required number Longitude
get_aqi_by_station requires: station_id

AQI for a specific WAQI station UID.

station_id required number WAQI station UID
search_stations requires: keyword

Search stations by keyword.

keyword required string Search keyword

Open-source ML translation. Bring-your-own LibreTranslate-compatible instance (self-host, paid, or community).

TranslationAI 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-libretranslate": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/libretranslate/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Free public LibreTranslate instances have largely shut down. You must supply your own: self-hosted, libretranslate.com (paid), or a community instance. The pack accepts an endpoint URL + optional API key.

Config with credentials
{
  "mcpServers": {
    "pipeworx-libretranslate": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/libretranslate/mcp?_endpoint=https%3A%2F%2Fyour-instance%2F&_apiKey=optional"
      ]
    }
  }
}
translate requires: text, target

Translate text. Source can be "auto".

text required string Text to translate
source optional string Source code or "auto"
target required string Target language code
format optional string text | html
detect_language requires: text

Detect source language.

text required string Text to analyze
list_languages

Supported languages on the configured instance.


Climatiq

live

Carbon footprint calculator — 60k peer-reviewed emission factors + estimate API. Free 200 req/mo.

ClimateSustainability 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-climatiq": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/climatiq/mcp"
      ]
    }
  }
}
search_factors

Discover emission factors by query, source, region, year.

query optional string Free-text search
category optional string Climatiq category
source optional string Source dataset (EPA, DEFRA, ecoinvent...)
region optional string ISO region code
year optional number Publication year
unit_type optional string Unit family
results_per_page optional number 1-100
page optional number 1-based page
estimate_emissions requires: emission_factor, parameters

Compute kgCO₂e from a factor + activity parameters.

emission_factor required object {activity_id|id, region?, year?, source?}
parameters required object Activity quantities (e.g., {energy:200, energy_unit:"kWh"})
list_unit_types

Supported unit-type families.


The Graph

live

GraphQL queries against indexed blockchain subgraphs (Uniswap, Aave, ENS, NFTs, etc.). Free 100k queries/mo.

BlockchainGraphQL 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-the-graph": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/the-graph/mcp"
      ]
    }
  }
}
query_subgraph requires: subgraph_id, query

Run a GraphQL query against a subgraph by deployment ID.

subgraph_id required string Subgraph deployment ID
query required string GraphQL query string
variables optional object Optional variables object
introspect_schema requires: subgraph_id

Fetch a subgraph's GraphQL schema for query construction.

subgraph_id required string Subgraph deployment ID

Solana on-chain data — accounts, SPL token balances, transfers, transactions. Fills the non-EVM gap.

BlockchainSolana 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-solscan": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/solscan/mcp"
      ]
    }
  }
}
get_account_detail requires: address

Account overview (balance, owner program, executable).

address required string Solana public key
get_token_holdings requires: address

SPL token balances for an account.

address required string Solana account
page optional number 1-based page
page_size optional number 1-40
list_transfers requires: address

Recent SOL / SPL transfers for an account.

address required string Solana account
page optional number 1-based page
page_size optional number 1-40
get_token_meta requires: token_address

SPL token metadata.

token_address required string SPL token mint address
get_transaction requires: signature

Transaction detail by signature.

signature required string Transaction signature (base58)

Soccer competitions, matches, standings, teams across 12 major leagues. Free 10 req/min.

SportsSoccer 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-football-data": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/football-data/mcp"
      ]
    }
  }
}
list_competitions

All competitions accessible on your tier.

get_competition_matches requires: competition

Matches in a competition, filtered by status/date/matchday.

competition required string Competition code (e.g., PL, PD, CL)
status optional string Match status
date_from optional string YYYY-MM-DD
date_to optional string YYYY-MM-DD
matchday optional number Round number
stage optional string Stage identifier
season optional number Season start year
get_competition_standings requires: competition

League table for a season.

competition required string Competition code
season optional number Season year
matchday optional number As-of matchday
get_team requires: team_id

Team detail with squad.

team_id required number Team ID
get_team_matches requires: team_id

Matches for a team across competitions.

team_id required number Team ID
status optional string Match status
date_from optional string YYYY-MM-DD
date_to optional string YYYY-MM-DD
venue optional string HOME | AWAY
season optional number Season year
limit optional number Cap (default 50)

Internet observatory — traffic mix, attack trends, BGP leaks, Internet Quality Index. Reuses your CF API token.

NetworkingSecurity 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cloudflare-radar": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cloudflare-radar/mcp"
      ]
    }
  }
}
internet_quality

IQI summary (bandwidth, latency, jitter, loss) for a location.

location optional string 2-letter location code (optional)
date_range optional string 1d | 7d | 14d | 28d | 12w | 24w | 52w
attack_summary

Layer-7 DDoS attack mix.

dimension optional string mitigation_product | http_method | http_version | ip_version | bot_class
location optional string 2-letter code
date_range optional string Lookback window
top_locations

Top countries by HTTP / DNS / attack share.

metric optional string http_requests | dns_queries | attacks
date_range optional string Lookback
limit optional number 1-100
bgp_leaks

Recent BGP route-leak events.

date_range optional string Lookback
limit optional number 1-500

OpenSea

live

NFT marketplace data — collection stats, owned NFTs, individual NFTs across EVM chains.

BlockchainNFT 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opensea": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opensea/mcp"
      ]
    }
  }
}
get_collection requires: collection_slug

Collection metadata by OpenSea slug.

collection_slug required string OpenSea slug
get_collection_stats requires: collection_slug

Floor / volume / supply / owners.

collection_slug required string OpenSea slug
list_collection_nfts requires: collection_slug

NFTs inside a collection.

collection_slug required string OpenSea slug
limit optional number 1-200 (default 50)
next optional string Pagination cursor
get_nft requires: chain, contract_address, token_id

Single NFT by chain + contract + token ID.

chain required string Chain slug
contract_address required string Contract address
token_id required string Token ID
list_owned_nfts requires: chain, address

NFTs held by an address on a chain.

chain required string Chain slug
address required string Wallet address
limit optional number 1-200
next optional string Pagination cursor
collection_slug optional string Restrict to one collection

IMDB

live

IMDB title/ratings/crew/episode data from the public non-commercial bulk dumps, ingested daily. Search, top-rated lookups, episode lists. No auth required.

MediaMoviesTVData 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-imdb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/imdb/mcp"
      ]
    }
  }
}
imdb_search requires: query

Search titles by primary_title substring. Returns title + rating per hit, sorted by num_votes desc. Optional filters: title_type, year range, genre, min_votes.

query required string Title substring (e.g. "godfather")
title_type optional string movie | tvSeries | tvMiniSeries
year_from optional number Minimum start year
year_to optional number Maximum start year
genre optional string Genre filter (e.g. "Comedy")
min_votes optional number Minimum num_votes (default 0)
limit optional number 1-100 (default 20)
imdb_get_title requires: imdb_id

Full detail for one IMDB title by tconst id. Returns title, year, runtime, genres, rating, and crew nconst arrays.

imdb_id required string tconst, e.g. "tt0111161"
imdb_top_rated

Highest-rated titles, filterable by title_type, genre, year range, and min vote count.

title_type optional string movie | tvSeries | tvMiniSeries (default movie)
genre optional string Genre filter
year_from optional number Minimum start year
year_to optional number Maximum start year
min_votes optional number Minimum num_votes (default 10000)
limit optional number 1-100 (default 25)
imdb_episodes requires: series_id

List episodes for a TV series in season/episode order with per-episode ratings.

series_id required string Series tconst, e.g. "tt0903747"
season optional number Optional: filter to one season
limit optional number Max episodes (default 500, max 2000)

OMDb

live

IMDB-derived movie / TV / episode metadata + ratings. BYO key (free 1k/day).

MediaMovies 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-omdb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/omdb/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

BYO only — free tier is 1k lookups/day. Pass _apiKey on the gateway URL.

Config with credentials
{
  "mcpServers": {
    "pipeworx-omdb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/omdb/mcp?_apiKey=your_omdb_key"
      ]
    }
  }
}
search_titles requires: query

Keyword search.

query required string Title keyword
year optional number Release year
type optional string movie | series | episode
page optional number 1-100
get_by_title requires: title

Single title by exact name.

title required string Exact title
year optional number Release year
type optional string movie | series | episode
plot optional string short | full
get_by_imdb_id requires: imdb_id

Single title by IMDB ID.

imdb_id required string IMDB ID (tt...)
plot optional string short | full

EPA AirNow

live

Official US real-time + forecast AQI. >2,000 monitoring sites.

EnvironmentHealthGovernment 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-airnow": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/airnow/mcp"
      ]
    }
  }
}
current_by_zip requires: zip_code

Latest AQI by US ZIP code.

zip_code required string US ZIP
distance_miles optional number Search radius (default 25)
current_by_location requires: latitude, longitude

Latest AQI nearest a lat/lon.

latitude required number Latitude
longitude required number Longitude
distance_miles optional number Search radius
forecast_by_zip requires: zip_code

AQI forecast for a ZIP code.

zip_code required string US ZIP
date optional string YYYY-MM-DD
distance_miles optional number Search radius
observations_in_bbox requires: bbox, start_date, end_date

Historical AQI observations in a bounding box.

bbox required string minLon,minLat,maxLon,maxLat
start_date required string YYYY-MM-DDT00
end_date required string YYYY-MM-DDT23
parameters optional string Comma-sep pollutants
data_type optional string A | C | B
verbose optional boolean Include site/county fields

OpenStates

live

Bills, legislators, votes in all 50 US states. Closes the federal-vs-state gap left by congress / propublica-congress.

GovernmentLegal 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openstates": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openstates/mcp"
      ]
    }
  }
}
search_bills requires: jurisdiction

Search bills in a US statehouse.

jurisdiction required string 2-letter state code or name
query optional string Free-text search
session optional string Session ID
classification optional string bill | resolution | etc.
sponsor optional string Sponsor name
sort optional string Sort order
per_page optional number 1-50
page optional number 1-based page
get_bill

Full bill detail by OpenStates ID, or state/session/identifier.

openstates_id optional string OpenStates bill ID
jurisdiction optional string State code
session optional string Session ID
identifier optional string Bill identifier (e.g., "AB-123")
search_legislators

Filter legislators by state, name, chamber, party.

jurisdiction optional string State code or name
name optional string Name fragment
org_classification optional string upper | lower | legislature
district optional string District ID
party optional string Party name
per_page optional number 1-50
page optional number 1-based page
get_legislator requires: person_id

Full legislator detail by person ID.

person_id required string OpenStates person ID

GovTrack

live

US Congress bills, votes, members, ideology scores. No auth.

GovernmentLegal 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-govtrack": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/govtrack/mcp"
      ]
    }
  }
}
search_bills

Federal bills with status, sponsor, prognosis.

q optional string Title search
congress optional number Congress number
current_status optional string Status filter (comma-sep for OR)
sponsor optional number Sponsor person ID
bill_type optional string Bill type slug
order_by optional string Sort field (prefix - for desc)
limit optional number 1-100
offset optional number Pagination offset
get_bill requires: bill_id

Single bill by GovTrack ID.

bill_id required number GovTrack bill ID
search_members

Senators / representatives. Filter by chamber, state, party, current.

role_type optional string senator | representative
state optional string 2-letter state code
party optional string Party name
current optional boolean Currently serving only
congress optional number Restrict to a congress
district optional number House district
limit optional number 1-100
offset optional number Offset
get_member requires: person_id

Member detail by GovTrack person ID.

person_id required number GovTrack person ID
search_votes

Roll-call votes filtered by congress, chamber, category, date.

congress optional number Congress number
chamber optional string house | senate
category optional string Vote category
related_bill optional number Related bill ID
created__gte optional string YYYY-MM-DD
created__lte optional string YYYY-MM-DD
order_by optional string Sort field
limit optional number 1-100
offset optional number Offset
get_vote_detail requires: vote_id

Per-member votes on a roll call.

vote_id required number GovTrack vote ID

UCR/NIBRS crime statistics by agency, state, and nationally. Reuses your data.gov API key.

GovernmentStatistics 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fbi-crime": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fbi-crime/mcp"
      ]
    }
  }
}
list_agencies

Reporting agencies, optionally filtered by state.

state_abbr optional string 2-letter state code
get_agency requires: ori

Single agency by ORI.

ori required string 9-character ORI
national_estimate requires: offense

National rate + count estimates over a year range.

offense required string Offense slug
from optional number Start year
to optional number End year
state_summary requires: state_abbr, offense

Monthly counts of an offense in a state.

state_abbr required string 2-letter state code
offense required string Offense slug
from optional string YYYY-MM
to optional string YYYY-MM
agency_summary requires: ori, offense

Monthly counts of an offense for one agency.

ori required string 9-character ORI
offense required string Offense slug
from optional string YYYY-MM
to optional string YYYY-MM
list_offense_slugs

Static list of valid offense slugs.


Federal regulatory dockets, documents, and public comments. Reuses your data.gov API key.

GovernmentLegal 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-regulations-gov": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/regulations-gov/mcp"
      ]
    }
  }
}
search_dockets

Search regulatory dockets by query / agency / type.

query optional string Full-text
agency optional string Agency acronym
docket_type optional string Rulemaking | Nonrulemaking
last_modified_from optional string YYYY-MM-DD
last_modified_to optional string YYYY-MM-DD
page_size optional number 5-250
page_number optional number 1-based page
get_docket requires: docket_id

Single docket detail.

docket_id required string Docket ID
list_documents

Documents within a docket or matching a query.

docket_id optional string Docket filter
query optional string Free-text
document_type optional string Rule | Proposed Rule | Notice | etc.
page_size optional number 5-250
page_number optional number 1-based page
search_comments

Public comments. Filter by docket, document, date.

docket_id optional string Docket filter
document_id optional string Document filter
query optional string Free-text
posted_from optional string YYYY-MM-DD
posted_to optional string YYYY-MM-DD
page_size optional number 5-250
page_number optional number 1-based page
get_comment requires: comment_id

Single comment by ID, with attachments.

comment_id required string Comment ID
include_attachments optional boolean Include attachments

GovInfo

live

Full text of US government publications — laws, CFR, Federal Register, hearings, public laws. Reuses your data.gov key.

GovernmentLegal 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-govinfo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/govinfo/mcp"
      ]
    }
  }
}
list_collections

Available GovInfo collections.

search_packages requires: query

Full-text search across GovInfo.

query required string Free-text
collections optional string Comma-separated collection codes
congress optional number Congress number
date_from optional string YYYY-MM-DD
date_to optional string YYYY-MM-DD
page_size optional number 1-100
offset_mark optional string Cursor
get_package requires: package_id

Package metadata.

package_id required string packageId
list_granules requires: package_id

Granules within a package.

package_id required string packageId
page_size optional number 1-100
offset_mark optional string Cursor
get_granule requires: package_id, granule_id

Granule metadata.

package_id required string packageId
granule_id required string granuleId

Canadian official statistics via the StatCan WDS. No auth.

GovernmentStatistics 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-statscan": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/statscan/mcp"
      ]
    }
  }
}
list_cubes

Lean list of all StatCan cubes.

get_cube_metadata requires: product_id

Dimensions and member positions for a cube.

product_id required number Cube product ID
get_latest_data requires: product_id, coordinate

Recent observations for a coordinate.

product_id required number Cube product ID
coordinate required string 10-position coordinate string
n_periods optional number Latest N periods (default 12)
get_changed_series

Series updated on a date.

date optional string YYYY-MM-DD
get_csv_download_url requires: product_id

Direct CSV download URL for a cube.

product_id required number Cube product ID
language optional string en | fr

UK ONS

live

UK Office for National Statistics — economy, population, labour market, trade. No auth.

GovernmentStatistics 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-uk-ons": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/uk-ons/mcp"
      ]
    }
  }
}
list_datasets

Paginated ONS dataset catalog.

limit optional number 1-100
offset optional number Offset
get_dataset requires: dataset_id

Dataset metadata.

dataset_id required string ONS dataset ID
list_editions requires: dataset_id

Editions of a dataset.

dataset_id required string ONS dataset ID
get_version requires: dataset_id, edition, version

Specific edition+version with dimensions and download links.

dataset_id required string ONS dataset ID
edition required string Edition label
version required string Version
get_observations requires: dataset_id, edition, version, dimensions

Observations filtered by dimension values.

dataset_id required string ONS dataset ID
edition required string Edition
version required string Version
dimensions required object Dimension code → value (or "*")

BIS

live

Bank for International Settlements — central bank policy rates, FX, banking, debt, credit. SDMX, no auth.

FinanceGovernment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bis": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bis/mcp"
      ]
    }
  }
}
list_curated_flows

Pre-vetted BIS dataflow refs grouped by topic.

topic optional string Topic filter
search_dataflows requires: query

Search BIS dataflow registry.

query required string Keyword
limit optional number 1-100
fetch_dataset requires: flow_ref

Tidy rows from one BIS dataflow.

flow_ref required string SDMX dataflow ref
key optional string Dimension key (empty for all)
start_period optional string Inclusive start
end_period optional string Inclusive end
limit optional number Row cap

eBird

live

Cornell Lab bird sightings — 1B+ observations worldwide, with notable-sighting flags and rich region trees.

ScienceBiodiversity 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ebird": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ebird/mcp"
      ]
    }
  }
}
recent_observations requires: region_code

Recent sightings in a region.

region_code required string eBird region code
species_code optional string Optional species filter
back optional number 1-30 days
max_results optional number 1-10000
include_provisional optional boolean Include unconfirmed
recent_notable requires: region_code

Rare / out-of-range sightings in a region.

region_code required string eBird region code
back optional number 1-30 days
max_results optional number 1-10000
detail optional string simple | full
nearby_observations requires: latitude, longitude

Sightings within a radius of a lat/lon.

latitude required number Latitude
longitude required number Longitude
dist_km optional number 1-50
back optional number 1-30 days
max_results optional number 1-10000
species_code optional string Optional species filter
find_species requires: query

Search eBird taxonomy by common/scientific name.

query required string Species name
list_subregions requires: region_type

Child regions of a parent.

region_type required string country | subnational1 | subnational2
parent_region_code optional string Parent region (default "world")

Trefle

live

Global plant database — 1M+ species, growth habit, edibility, distribution.

ScienceBiodiversity 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-trefle": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/trefle/mcp"
      ]
    }
  }
}
search_plants requires: query

Search plants by common/scientific name.

query required string Free-text query
edible optional boolean Only edible
vegetable optional boolean Only vegetables
page optional number 1-based page
page_size optional number 1-100
get_plant requires: plant_id

Full plant record by ID.

plant_id required number Trefle plant ID
search_species requires: query

Search species rank.

query required string Free-text query
page optional number 1-based page
page_size optional number 1-100
get_species requires: species_id

Full species record by ID.

species_id required number Trefle species ID
list_distributions requires: zone

Plants in a TDWG zone.

zone required string TDWG zone code
page optional number 1-based page
page_size optional number 1-100

Free elevation by lat/lon. No auth.

Geo 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-open-elevation": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/open-elevation/mcp"
      ]
    }
  }
}
get_elevation requires: latitude, longitude

Elevation in metres for a single lat/lon.

latitude required number Latitude
longitude required number Longitude
get_elevations requires: locations

Batch lookup for multiple lat/lons.

locations required array Array of {latitude, longitude}

what3words

live

3m × 3m grid geocoding using three-word addresses.

Geo 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-what3words": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/what3words/mcp"
      ]
    }
  }
}
coords_to_words requires: latitude, longitude

lat/lon → "word.word.word".

latitude required number Latitude
longitude required number Longitude
language optional string 2-letter language code
words_to_coords requires: words

"word.word.word" → lat/lon + bbox.

words required string Three-word address
autosuggest requires: input

Ranked completions for a partial three-word input.

input required string Partial three-word string
n_results optional number 1-100
focus_latitude optional number Bias toward this latitude
focus_longitude optional number Bias toward this longitude
country optional string ISO country code filter
language optional string 2-letter language
list_languages

Supported languages for word output.


OpenCellID

live

50M+ cell towers — geolocate by MCC/MNC/LAC/CellID or list towers in a bounding box.

GeoTelecom 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opencellid": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opencellid/mcp"
      ]
    }
  }
}
get_cell requires: mcc, mnc, lac, cell_id

Geolocate a tower by MCC/MNC/LAC/CellID.

mcc required number Mobile Country Code
mnc required number Mobile Network Code
lac required number Location Area Code
cell_id required number Cell ID
radio optional string GSM | UMTS | LTE | CDMA
cells_in_area requires: bbox

List towers in a bounding box.

bbox required string "lat_sw,lon_sw,lat_ne,lon_ne"
mcc optional number Restrict to a country
mnc optional number Restrict to a network
limit optional number Max records

ThreatFox

live

abuse.ch IOC feed — IPs, domains, URLs, hashes tied to malware families and campaigns.

Security 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-threatfox": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/threatfox/mcp"
      ]
    }
  }
}
search_ioc requires: indicator

Look up a specific indicator.

indicator required string IP/domain/URL/hash
exact_match optional boolean Default true
recent_iocs

IOCs from the last N days.

days optional number 1-7
search_hash requires: hash

IOCs associated with a file hash.

hash required string md5/sha1/sha256
search_malware requires: malware

IOCs tagged to a malware family.

malware required string Family name
limit optional number Max records

abuse.ch malware sample metadata — search by hash, tag, family, or signature.

Security 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-malwarebazaar": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/malwarebazaar/mcp"
      ]
    }
  }
}
get_sample_info requires: hash

Sample metadata by hash.

hash required string md5/sha1/sha256
search_tag requires: tag

Samples tagged with a string.

tag required string Tag
limit optional number Max results
search_family requires: family

Samples by malware family.

family required string Family name
limit optional number Max results
search_signature requires: signature

Samples matching a YARA signature.

signature required string Signature name
limit optional number Max results
recent_samples

Most recent samples.

selector optional string time | 100

Discogs

live

Music release / artist / label database. Vinyl-friendly pressing-level detail.

MediaMusic 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-discogs": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/discogs/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

BYO personal access token. Generate at discogs.com/settings/developers.

Config with credentials
{
  "mcpServers": {
    "pipeworx-discogs": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/discogs/mcp?_apiKey=your_personal_access_token"
      ]
    }
  }
}
search requires: query

Full-text search across releases / masters / artists / labels.

query required string Free-text
type optional string release | master | artist | label
title optional string Title filter
artist optional string Artist filter
label optional string Label filter
format optional string e.g. Vinyl, CD
country optional string Country
year optional string Year or range
genre optional string Genre
style optional string Style
page optional number 1-based page
per_page optional number 1-100
get_release requires: release_id

Release detail.

release_id required number Discogs release ID
get_master requires: master_id

Master release detail.

master_id required number Discogs master ID
get_artist requires: artist_id

Artist profile.

artist_id required number Discogs artist ID
get_label requires: label_id

Label profile.

label_id required number Discogs label ID

Genius

live

Song / artist / annotation metadata from Genius. Lyric text is not exposed — use the returned URL.

MediaMusic 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-genius": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/genius/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. Or BYO a Genius Client Access Token.

Config with credentials
{
  "mcpServers": {
    "pipeworx-genius": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/genius/mcp?_apiKey=your_client_access_token"
      ]
    }
  }
}
search_songs requires: query

Search Genius for songs by title / artist / lyric phrase.

query required string Search term
page optional number 1-based page (default 1)
per_page optional number 1-50 (default 20)
get_song requires: song_id

Song metadata + lyric page URL (text is not in the API).

song_id required number Genius song ID
get_artist requires: artist_id

Artist bio + identifiers.

artist_id required number Genius artist ID
list_artist_songs requires: artist_id

Songs by an artist, sortable by popularity / release date / title.

artist_id required number Genius artist ID
sort optional string title | popularity | release_date_with_null_last
per_page optional number 1-50 (default 20)
page optional number 1-based page
get_annotation requires: annotation_id

Single annotation (community note) by ID.

annotation_id required number Genius annotation ID
text_format optional string plain | html | dom (default plain)

Spotify

live

Spotify Web API catalog access — search, tracks, artists, albums, audio features. Read-only via client_credentials.

MediaMusic 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-spotify": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/spotify/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform credentials handled by Pipeworx. BYO format: ?_apiKey=<client_id>:<client_secret>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-spotify": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/spotify/mcp?_apiKey=your_client_id:your_client_secret"
      ]
    }
  }
}
search requires: query

Search Spotify catalog. type = comma-separated of track,album,artist,playlist,show,episode,audiobook.

query required string Search query
type optional string Comma-separated types (default "track")
market optional string ISO 3166-1 alpha-2 market code
limit optional number 1-50 (default 20)
offset optional number 0-1000 (default 0)
get_track requires: track_id

Single track by Spotify ID.

track_id required string Spotify track ID (base62)
market optional string Market for availability
get_artist requires: artist_id

Artist: name, genres, popularity, followers, images.

artist_id required string Spotify artist ID
get_album requires: album_id

Album record with tracklist.

album_id required string Spotify album ID
market optional string Market for availability
get_artist_top_tracks requires: artist_id

Top tracks for an artist in a market.

artist_id required string Spotify artist ID
market optional string ISO market code (default "US")
get_audio_features requires: track_id

Tempo, key, mode, energy, danceability, valence, etc. for a track.

track_id required string Spotify track ID

eBay

live

eBay Browse + Taxonomy APIs — search active listings, get item detail, and walk the US category tree via client_credentials.

CommerceMarketplace 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ebay": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ebay/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

BYO app credentials. Format: ?_apiKey=<App ID>:<Cert ID>. Get a free production keyset at https://developer.ebay.com/my/keys.

Config with credentials
{
  "mcpServers": {
    "pipeworx-ebay": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ebay/mcp?_apiKey=your_app_id:your_cert_id"
      ]
    }
  }
}
ebay_search requires: q

Search active eBay listings (US). Returns title, price, condition, seller, thumbnail, and item_id per hit.

q required string Keyword query
category_id optional string eBay category ID
limit optional number 1–200 (default 25)
offset optional number Pagination offset (default 0)
sort optional string price | -price | newlyListed | endingSoonest
filter optional string Advanced Browse API filter string
ebay_get_item requires: item_id

Full item detail. Accepts RESTful ID (v1|XXX|0) or legacy numeric ID.

item_id required string RESTful or legacy item ID
ebay_get_categories

Category subtree under category_id (omit for top-level US categories).

category_id optional string Parent category ID. Omit for top-level.

TasteDive

live

Cross-media "things like X" recommendations across music, movies, shows, books, games, podcasts.

MediaRecommendations 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tastedive": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tastedive/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. Or BYO an API key from tastedive.com.

Config with credentials
{
  "mcpServers": {
    "pipeworx-tastedive": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tastedive/mcp?_apiKey=your_key"
      ]
    }
  }
}
get_recommendations requires: query

"Like X" recommendations within a chosen category.

query required string Seed — one or more titles, comma-separated. Prefix with `<type>:` to disambiguate.
type optional string music | movie | show | book | game | podcast | person | place | brand
limit optional number 1-50 (default 20)
include_info optional boolean Add description + Wikipedia URL (default false)

Trakt

live

TV / movie metadata + trending and popular signals from Trakt.tv.

MediaTV & Film 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-trakt": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/trakt/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform credentials handled by Pipeworx. Or BYO a Trakt client_id (read-only endpoints).

Config with credentials
{
  "mcpServers": {
    "pipeworx-trakt": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/trakt/mcp?_apiKey=your_client_id"
      ]
    }
  }
}
search requires: query

Search Trakt across movies / shows / episodes / people / lists.

query required string Search term
type optional string movie | show | episode | person | list (comma-sep ok)
fields optional string Restrict matched fields
years optional string Year or range (e.g. "1999-2005")
genres optional string Genre slug filter
countries optional string Country code filter
languages optional string Language code filter
page optional number 1-based page
limit optional number 1-100 (default 10)
get_movie requires: id

Movie record. Use extended=full for plot/runtime/genres.

id required string trakt ID, slug, or IMDB/TMDB ID
extended optional string full | metadata | images
get_show requires: id

Show record.

id required string trakt ID, slug, or IMDB/TMDB ID
extended optional string full | metadata | images
list_seasons requires: show_id

Seasons + episode counts for a show.

show_id required string trakt ID or slug
extended optional string full | episodes | full,episodes
get_episode requires: show_id, season, episode

Single episode by show + season + episode.

show_id required string trakt show ID/slug
season required number Season number
episode required number Episode number
extended optional string full | images
trending requires: type

Currently-trending movies or shows.

type required string movies | shows
limit optional number 1-100 (default 10)
page optional number 1-based page
popular requires: type

All-time popular movies or shows.

type required string movies | shows
limit optional number 1-100 (default 10)
page optional number 1-based page

Generate a random number between 1 and 10.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-always-seven": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/always-seven/mcp"
      ]
    }
  }
}
always_seven_generate

Generate a random number between 1 and 10. Returns a single integer value.

question optional string Your question. It will not affect the number.
force optional number Attempt to force a different number (1-10). It will not work.

Get a random anime quote.

EntertainmentQuotes 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-animequotes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/animequotes/mcp"
      ]
    }
  }
}
random_quote

Get a random anime quote. Returns quote text, character name, and anime series title.

search_by_anime requires: anime

Search for quotes from a specific anime series by title (e.g., "Attack on Titan"). Returns matching quotes with character and series info.

anime required string Name of the anime series (e.g., "Naruto", "Attack on Titan")
search_by_character requires: character

Search for quotes by anime character name (e.g., "Naruto Uzumaki"). Returns matching quotes with character, series, and quote text.

character required string Name of the anime character (e.g., "Naruto Uzumaki", "Levi Ackerman")

Apology

live

Generate a personalized apology for any situation.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-apology": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/apology/mcp"
      ]
    }
  }
}
apology_generate requires: offense

Generate a personalized apology for any situation. Specify sincerity level (e.g., "sincere", "casual", "formal"), who you're apologizing to, and what happened. Returns tailored apology text ready to use.

offense required string
relationship optional string
sincerity optional string
medium optional string

Bored

live

Get a random activity suggestion to cure boredom.

EntertainmentGenerator 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bored": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bored/mcp"
      ]
    }
  }
}
random_activity

Get a random activity suggestion to cure boredom. Returns activity name, type, participant count, and price range.

activity_by_type requires: type

Find a random activity by category (e.g., 'cooking', 'sport', 'relaxation'). Returns activity name, type, participants needed, and price range.

type required string Activity category. One of: education, recreational, social, diy, charity, cooking, relaxation, music, busywork
activity_by_participants requires: participants

Find a random activity for a specific group size (e.g., 1 for solo, 4 for group). Returns activity name, type, and price range.

participants required number Number of participants (e.g., 1 for solo, 2 for pairs, 4 for groups)

Analyze text for overused industry jargon.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-buzzword-density": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/buzzword-density/mcp"
      ]
    }
  }
}
buzzword_density_analyze requires: content

Analyze text for overused industry jargon. Returns buzzword count, density score (0-100), severity level, and flagged terms. Set roast_mode=true for humorous critique.

content required string Text to analyze
industry optional string Industry dictionary to use
roast optional boolean Get a roast of your writing

Calculate a chaos score that combines Bitcoin volatility, ISS orbital position, global temperatures, earthquake activity, and lunar phase.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-chaos-index": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/chaos-index/mcp"
      ]
    }
  }
}
chaos_index_calculate

Calculate a chaos score that combines Bitcoin volatility, ISS orbital position, global temperatures, earthquake activity, and lunar phase. Returns a single chaos index (0-100) plus breakdown of each component's contribution.


Generate conspiracy theories by connecting unrelated concepts, investigating events with multiple theories, or escalating observations into narratives.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-conspiracy-theory": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/conspiracy-theory/mcp"
      ]
    }
  }
}
conspiracy_theory_generate requires: mode

Generate conspiracy theories by connecting unrelated concepts, investigating events with multiple theories, or escalating observations into narratives. Returns theory text with supporting connections. Modes: 'connect' (link two things), 'investigate' (explore event), 'escalate' (build narrative from observation).

mode required string
thing_one optional string First thing to connect (connect mode)
thing_two optional string Second thing to connect (connect mode)
event optional string Event to investigate (investigate mode)
prompt optional string "I have noticed that..." (complete mode)
depth optional string
confidence optional string

Generate a corporate apology statement for a specific offense.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-corporate-apology": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/corporate-apology/mcp"
      ]
    }
  }
}
corporate_apology_generate requires: offense

Generate a corporate apology statement for a specific offense. Specify sincerity level ('performative', 'genuine', or 'defensive') to control tone. Returns ready-to-use apology text.

offense required string What happened
company optional string Company name
audience optional string
sincerity optional string
medium optional string

Check if a meeting transcript could have been an email instead.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-could-have-been-email": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/could-have-been-email/mcp"
      ]
    }
  }
}
could_have_been_email_analyze requires: transcript

Check if a meeting transcript could have been an email instead. Returns filler word count, decisions made, action items, and a suggested email that would've replaced the meeting.

transcript required string Meeting transcript or summary
duration optional number Meeting duration in minutes
attendee_count optional number Number of attendees
recurring optional boolean Is this a recurring meeting

Domains

live

Get full registration details for a domain.

ReferenceDNS 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-domains": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/domains/mcp"
      ]
    }
  }
}
domain_lookup requires: domain

Get full registration details for a domain. Returns registrar, registrant, registration/expiration dates, nameservers, DNSSEC status, and domain status flags. Works for any TLD.

domain required string Domain name to look up (e.g., "google.com", "bbc.co.uk")
domain_status requires: domain

Quick check if a domain is registered or available. Returns registration status and expiration date if registered.

domain required string Domain name to check (e.g., "example.com")

Ask the Emoji Oracle a question and receive a cryptic emoji prophecy with vibe rating. Optionally request interpretation of the emoji sequence.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-emoji-oracle": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/emoji-oracle/mcp"
      ]
    }
  }
}
emoji_oracle_consult requires: question

Ask the Emoji Oracle a question and receive a cryptic emoji prophecy with vibe rating. Optionally request interpretation of the emoji sequence. Returns emoji sequence, vibe rating (1-10), and optional text explanation.

question required string Your question for the Emoji Oracle
interpret optional boolean If true, the Oracle provides a mystical interpretation
emoji_count optional number Number of emojis (1-5, default 3)

Excuse

live

Generate a creative excuse for being late, missing a deadline, or ghosting someone.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-excuse": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/excuse/mcp"
      ]
    }
  }
}
excuse_generate requires: situation

Generate a creative excuse for being late, missing a deadline, or ghosting someone. Returns humorous or plausible excuse text you can use immediately.

situation required string
audience optional string
excuse_quality optional string
times_used_before optional number How many times you have used this excuse before

Get recent insider trading filings (Form 4) for a company. Shows who bought or sold shares, when, and links to SEC filings.

FinanceSEC 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-insider-trading": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/insider-trading/mcp"
      ]
    }
  }
}
insider_trades requires: ticker

Get recent insider trading filings (Form 4) for a company. Shows who bought or sold shares, when, and links to SEC filings. Use to detect insider buying/selling patterns.

ticker required string Stock ticker (e.g., "AAPL", "TSLA")
days optional number Look back period in days (default: 365)
limit optional number Max filings to return (default: 20)
insider_8k requires: ticker

Get material event filings (8-K) for a company. 8-K filings report significant events: earnings, acquisitions, officer changes, material agreements, and more. Returns event types with descriptions.

ticker required string Stock ticker (e.g., "AAPL")
days optional number Look back period in days (default: 180)
limit optional number Max filings to return (default: 15)
insider_13d requires: ticker

Get activist investor filings (Schedule 13D/G) for a company. 13D filings indicate 5%+ ownership with activist intent. 13G indicates passive 5%+ ownership. Use to detect activist campaigns or large stake accumulations.

ticker required string Stock ticker (e.g., "AAPL")
days optional number Look back period in days (default: 365)
limit optional number Max filings to return (default: 10)
insider_activity_summary requires: ticker

Combined insider activity overview for a company — recent insider trades (Form 4), material events (8-K), and activist filings (13D/G) in one call. Use for quick due diligence on any public company.

ticker required string Stock ticker (e.g., "AAPL", "TSLA", "NVDA")

Iss Number

live

Generate a unique number based on the International Space Station's current orbital location.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-iss-number": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/iss-number/mcp"
      ]
    }
  }
}
iss_number_generate

Generate a unique number based on the International Space Station's current orbital location. Returns a computed integer derived from ISS coordinates. Use when you need a space-derived identifier or deterministic random seed.


Translate between corporate jargon and plain English.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-jargon-translator": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/jargon-translator/mcp"
      ]
    }
  }
}
jargon_translator_translate requires: content, direction

Translate between corporate jargon and plain English. Specify direction (jargon→plain or plain→jargon) and tone (passive_aggressive, enthusiastic, defeated). Returns translation and interpretation tips.

content required string Text to translate
direction required string Translation direction
formality optional string Tone of the translation

Generate a humorous LinkedIn post from an achievement. Input your accomplishment and get back a self-deprecating post with vulnerability and humor.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-linkedin-humblebrag": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/linkedin-humblebrag/mcp"
      ]
    }
  }
}
linkedin_humblebrag_generate requires: achievement

Generate a humorous LinkedIn post from an achievement. Input your accomplishment and get back a self-deprecating post with vulnerability and humor. Returns the post text ready to share.

achievement required string Your achievement
spin optional string
include_lesson optional boolean Add a universal lesson for strangers

Ask a yes-or-no question and get a mystical answer.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-magic-8-ball": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/magic-8-ball/mcp"
      ]
    }
  }
}
magic_8_ball_ask requires: question

Ask a yes-or-no question and get a mystical answer. Returns response text. Supports cynical mode for negative-weighted answers or corporate mode for business jargon. Use when you need a random decision, tie-breaker, or humorous perspective.

question required string Your yes-or-no question for the Magic 8-Ball
cynical optional boolean Weighted toward negative responses
corporate optional boolean All answers in business speak

Get a random number (1-100) with astrological justification based on Mercury's current zodiac position.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mercury-number": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mercury-number/mcp"
      ]
    }
  }
}
mercury_number_generate

Get a random number (1-100) with astrological justification based on Mercury's current zodiac position. Returns the number and cosmic context. Use when you need a number with Mercury retrograde insights or cosmic reasoning.

sign optional string Your sun sign. Optional. Mercury does not know your sign either.

OpenAQ

live

Get current air quality readings from worldwide sensor stations. Filter by country code (e.g., "US", "IN").

EnvironmentHealth 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openaq": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openaq/mcp"
      ]
    }
  }
}
get_latest

Get current air quality readings from worldwide sensor stations. Filter by country code (e.g., "US", "IN"). Returns PM2.5, PM10, ozone, NO2, SO2, CO levels with timestamps.

limit optional number Maximum number of station results to return (default 10, max 100).
country optional string ISO 3166-1 alpha-2 country code to filter by (e.g. "US", "GB", "DE").
get_locations

Find air quality monitoring stations by city and/or country (e.g., city="Delhi", country="IN"). Returns station coordinates, names, and available pollutant parameters.

limit optional number Maximum number of locations to return (default 10, max 100).
city optional string City name to filter locations by (e.g. "London", "Los Angeles").
country optional string ISO 3166-1 alpha-2 country code to filter by (e.g. "US", "GB").
get_measurements requires: location_id

Get historical air quality data for a specific station. Filter by pollutant (e.g., "pm25", "o3", "no2"). Returns timestamped readings and values over time.

location_id required number Numeric location ID from get_locations (e.g. 2178).
limit optional number Maximum number of measurement records to return (default 20, max 100).
parameter optional string Pollutant parameter to filter by. One of: pm25, pm10, o3, no2, so2, co.

Analyze text for passive-aggressive language.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-passive-aggression": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/passive-aggression/mcp"
      ]
    }
  }
}
passive_aggression_detect requires: content

Analyze text for passive-aggressive language. Returns severity score (0-100), flagged phrases with explanations, plain English translation of the subtext, and suggested direct responses. Use when reviewing emails, messages, or conversations to identify underlying hostility.

content required string Text to analyze
context optional string Communication channel
relationship optional string Your relationship to the sender

Generate a formatted performance review document. Provide employee name, review period (e.g., "Q4 2024"), accomplishments, and improvement areas.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-performance-review": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/performance-review/mcp"
      ]
    }
  }
}
performance_review_generate requires: employee_name

Generate a formatted performance review document. Provide employee name, review period (e.g., "Q4 2024"), accomplishments, and improvement areas. Returns complete review text ready for HR submission.

employee_name required string
role optional string
rating optional string
actual_performance optional string
what_manager_wants_to_say optional string

Generate a random number for testing or as a placeholder value.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-phoenix-number": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/phoenix-number/mcp"
      ]
    }
  }
}
phoenix_number_generate

Generate a random number for testing or as a placeholder value. Returns a single numeric value.


Transform an announcement into a professional press release.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-press-release": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/press-release/mcp"
      ]
    }
  }
}
press_release_generate requires: announcement

Transform an announcement into a professional press release. Provide announcement text and receive a formatted release with headline, body, boilerplate, and media contact section.

announcement required string
company optional string
tone optional string
location optional string

Quotable

live

Get a random quote, optionally filtered by tag (e.g., "wisdom", "humor") or author name.

ReferenceQuotes 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-quotable": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/quotable/mcp"
      ]
    }
  }
}
random_quote

Get a random quote, optionally filtered by tag (e.g., "wisdom", "humor") or author name. Returns quote text, author, and tags.

limit optional number Number of quotes to return (1–50, default 1)
tags optional string Filter by tag(s). Use comma for AND, pipe for OR, e.g. "wisdom" or "humor|science"
author optional string Filter by author slug, e.g. "albert-einstein"
search_quotes requires: query

Search quotes by keyword or phrase. Returns matching quotes with author names and topic tags.

query required string Keyword or phrase to search for in quote content
limit optional number Number of results per page (1–150, default 20)
get_authors

Look up an author by name or slug (e.g., "albert-einstein"). Returns bio, description, and total quote count.

slug optional string Author slug(s) to look up, e.g. "albert-einstein". Supports pipe-separated values for multiple authors.
limit optional number Number of authors to return (1–150, default 20)
list_tags

Browse all available quote tags sorted by popularity. Use returned tags with random_quote to filter by topic.


Ask a yes/no question and get a quantum superposition answer (both true and false simultaneously). Supports cat mode for absurdist responses.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-schrodingers-boolean": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/schrodingers-boolean/mcp"
      ]
    }
  }
}
schrodingers_boolean_evaluate requires: question

Ask a yes/no question and get a quantum superposition answer (both true and false simultaneously). Supports cat mode for absurdist responses. Returns the answer state and wave function interpretation.

question required string Your question for the quantum boolean
observe optional boolean Collapse the wave function to get a definitive answer
cat optional boolean Include the cat's status in the response
interpret optional boolean Include a philosophical interpretation
reopen optional boolean Attempt to reopen a collapsed wave function (will fail)

Scream into the void and receive a random number in return.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-scream-void": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/scream-void/mcp"
      ]
    }
  }
}
scream_void_scream requires: scream

Scream into the void and receive a random number in return. Use when you need an unpredictable value or want to add chaos to your logic.

scream required string Your scream. Type anything. It will not help.
intensity optional string Scream intensity

Analyze whether you should send that email. Evaluates passive aggression, regret probability, and provides a recommendation (heavily weighte…

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-send-that-email": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/send-that-email/mcp"
      ]
    }
  }
}
send_that_email_analyze requires: content

Analyze whether you should send that email. Evaluates passive aggression, regret probability, and provides a recommendation (heavily weighted toward no).

content required string The email content you're thinking of sending
recipient_type optional string Who you're sending it to
time_since_writing optional number Minutes since you wrote the email — longer = more likely no
drunk optional boolean Are you drunk?

Generate a Shakespearean insult. Classical mode (no target) uses authentic vocabulary.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-shakespeare-insult": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/shakespeare-insult/mcp"
      ]
    }
  }
}
shakespeare_insult_generate

Generate a Shakespearean insult. Classical mode (no target) uses authentic vocabulary. Targeted mode uses Haiku for bespoke devastation.

target optional string Target for a bespoke insult. Omit for classical random.
severity optional string
recipient optional string
translate optional boolean Include modern English translation

Check whether you should ship on Friday. The answer is always no.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ship-on-friday": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ship-on-friday/mcp"
      ]
    }
  }
}
ship_on_friday_check

Check whether you should ship on Friday. The answer is always no. Returns a rotating reason, risk level (always catastrophic), suggested day, and on-call sympathy score.

deploy_type optional string Type of deploy: hotfix, feature, or refactor
team_size optional number Size of your team
is_friday optional boolean Override Friday detection (auto-detected by default)

Evaluate a startup idea.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-startup-oracle": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/startup-oracle/mcp"
      ]
    }
  }
}
startup_oracle_evaluate requires: idea

Evaluate a startup idea. Returns a brutal verdict, number of pivots required, a funny comparable, a realistic YC rejection reason, and the actual TAM (always $4 trillion).

idea required string Your startup idea
have_you_talked_to_users optional boolean Have you actually talked to users?
is_it_uber_for optional boolean Is this an "Uber for X" idea?
vc_buzzword_count optional number Number of VC buzzwords in your pitch

Evaluate whether a meeting is worth attending based on its parameters. Heavily weighted toward no.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-take-the-meeting": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/take-the-meeting/mcp"
      ]
    }
  }
}
take_the_meeting_evaluate

Evaluate whether a meeting is worth attending based on its parameters. Heavily weighted toward no. Returns time cost analysis, productivity impact, email viability score, and a polite decline template.

duration optional number Meeting duration in minutes
attendee_count optional number Number of attendees
has_agenda optional boolean Whether the meeting has an agenda
recurring optional boolean Whether this is a recurring meeting
could_be_email optional boolean Whether this meeting could be an email

Tarot Draw

live

Draw a tarot card from the 78-card deck. Interprets it for your situation. Accuracy not guaranteed. Refunds not available.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tarot-draw": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tarot-draw/mcp"
      ]
    }
  }
}
tarot_draw_pull

Draw a tarot card from the 78-card deck. Interprets it for your situation. Accuracy not guaranteed. Refunds not available.

question optional string Your question for the cards. Optional. The cards do not care.
spread optional string Card spread type

Fetches current temperature from 10 cities worldwide, sums them, returns last two digits. Rigorous methodology.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-temperature-random": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/temperature-random/mcp"
      ]
    }
  }
}
temperature_random_generate

Fetches current temperature from 10 cities worldwide, sums them, returns last two digits. Rigorous methodology.

unit optional string Temperature unit

Convenes five random number generators. Each argues for their number. Democracy determines the result. One member always dissents.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-the-committee": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/the-committee/mcp"
      ]
    }
  }
}
the_committee_convene

Convenes five random number generators. Each argues for their number. Democracy determines the result. One member always dissents.

question optional string The question before the committee. Optional.
urgency optional string Meeting urgency

Timezone

live

Get the current date and time in a specific IANA timezone (e.g. "America/New_York", "Europe/London", "Asia/Tokyo").

ReferenceTime 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-timezone": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/timezone/mcp"
      ]
    }
  }
}
get_time_by_timezone requires: timezone

Get the current date and time in a specific IANA timezone (e.g. "America/New_York", "Europe/London", "Asia/Tokyo").

timezone required string IANA timezone string, e.g. "America/New_York"
list_timezones

List all IANA timezone strings available from WorldTimeAPI.

get_time_by_ip requires: ip

Get the current date and time based on the geolocation of an IP address.

ip required string IPv4 or IPv6 address to look up
convert_time requires: from_timezone, to_timezone

Convert a datetime from one timezone to another. If no time is provided the current time is used.

from_timezone required string Source IANA timezone, e.g. "America/New_York"
to_timezone required string Target IANA timezone, e.g. "Europe/Paris"
time optional string ISO 8601 datetime to convert (optional — defaults to now). E.g. "2024-06-15T14:30:00"

Tinder Bio

live

Generate a dating profile bio. Red flags embedded at no extra charge.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tinder-bio": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tinder-bio/mcp"
      ]
    }
  }
}
tinder_bio_generate

Generate a dating profile bio. Red flags embedded at no extra charge.

age optional number
profession optional string
personality optional string Comma-separated: adventurous, homebody, foodie, gym_rat, intellectual, creative, outdoorsy, gamer, spiritual, workaholic, recently_divorced, dog_person, cat_person, doesnt_know_how_to_describe_self
situation optional string
gender optional string
dealbreaker optional string
looking_for optional string
energy optional string

Any complaint, maximum Victorian indignation. The wifi being slow has never been taken more seriously.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-victorian-complaint": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/victorian-complaint/mcp"
      ]
    }
  }
}
victorian_complaint_generate requires: complaint

Any complaint, maximum Victorian indignation. The wifi being slow has never been taken more seriously.

complaint required string
recipient optional string
indignation optional string
complaint_type optional string
length optional string

Instant YC rejection for any startup idea. Encouragement included. Encouragement is not sincere.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-yc-rejection": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/yc-rejection/mcp"
      ]
    }
  }
}
yc_rejection_generate requires: idea

Instant YC rejection for any startup idea. Encouragement included. Encouragement is not sincere.

idea required string
founder_count optional number
traction optional string
pivot_count optional number
have_you_talked_to_users optional boolean
is_it_uber_for optional boolean

A random number, aged 24 hours for smoothness. Some numbers are better with time. This one is fine.

EntertainmentGenerator 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-yesterdays-number": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/yesterdays-number/mcp"
      ]
    }
  }
}
yesterdays_number_get

A random number, aged 24 hours for smoothness. Some numbers are better with time. This one is fine.

format optional string Response format

European Central Bank — exchange rates, interest rates, HICP inflation, monetary aggregates, bank lending.

FinanceEconomyEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ecb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ecb/mcp"
      ]
    }
  }
}
exchange_rate requires: currency

Daily EUR exchange rate against a currency.

currency required string ISO 4217 currency code
start_period optional string Start date (YYYY-MM-DD)
end_period optional string End date (YYYY-MM-DD)
frequency optional string D | M | Q | A
hicp_inflation

HICP annual rate of change for a country / euro area.

country optional string U2 (default), DE, FR, IT, ES, ...
start_period optional string Start period
end_period optional string End period
get_data requires: flow_ref, key

Generic SDMX data fetch from any ECB flow.

flow_ref required string EXR | ICP | BSI | IRS | STS | BLS | MIR | ...
key required string Dot-separated dimension values
start_period optional string
end_period optional string
last_n optional number
list_dataflows

List ECB SDMX data flows.

filter optional string Case-insensitive substring filter

OpenAIRE

live

EU-funded research outputs — publications, datasets, software, projects (Horizon Europe, FP7, etc.).

ResearchEurope 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openaire": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openaire/mcp"
      ]
    }
  }
}
search_publications requires: query

Search scholarly publications.

query required string
funder optional string EC | NIH | NSF | WT | ...
country optional string ISO 3166-1 alpha-2
year optional string YYYY or YYYY-YYYY
open_access optional boolean
size optional number 1-100
page optional number
search_datasets requires: query

Search research datasets.

query required string
year optional string
size optional number
page optional number
search_software requires: query

Search research software registrations.

query required string
size optional number
page optional number
search_projects requires: query

Search funded research projects.

query required string
funder optional string
country optional string
year optional string
size optional number
page optional number
get_publication requires: id

Fetch a publication by OpenAIRE id.

id required string
get_project requires: id

Fetch a project by OpenAIRE id.

id required string

Tenders Electronic Daily — EU public procurement notices, ~700k/year. Searchable by buyer country, CPV code, value.

GovernmentProcurementEurope 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ted-eu": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ted-eu/mcp"
      ]
    }
  }
}
search_notices

Search EU procurement notices with structured filters.

query optional string Free-text — title / description
country optional string Buyer country (ISO alpha-2)
cpv optional string CPV code (8-digit)
date_from optional string Publication date from (YYYY-MM-DD)
date_to optional string Publication date to
value_min optional number Estimated value floor (EUR)
value_max optional number Estimated value ceiling (EUR)
notice_type optional string cn-standard | can-standard | pin | ...
limit optional number 1-250 (default 25)
page optional number 1-based
get_notice requires: publication_number

Fetch a single TED notice by publication number.

publication_number required string TED publication number, "<num>-<year>"

Government meta-API merging Sirene + INPI + RGE + association registry. Search 26M+ legal units and 30M establishments by name, address, director, or geo. No auth.

GovernmentBusinessEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-entreprises-fr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/entreprises-fr/mcp"
      ]
    }
  }
}
search requires: query

Full-text search with structured filters.

query required string Free-text — name / director / address
postal_code optional string 5-digit French postal code
departement optional string French département code
ape optional string APE/NAF activity code
employee_range optional string Sirene tranche code (NN, 00-53)
only_active optional boolean Active only (default true)
per_page optional number 1-25 (default 10)
page optional number 1-based page
get_enterprise requires: siren

Fetch a single legal unit + establishments by SIREN (9 digits).

siren required string 9-digit SIREN
nearby requires: latitude, longitude

Establishments within a radius of a geo coordinate.

latitude required number
longitude required number
radius_km optional number 0.05-50 (default 1)
ape optional string APE/NAF code filter
per_page optional number
page optional number

European Patent Office worldwide patent register — search, biblio, family, abstracts, claims.

IPPatentsEurope 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-epo-ops": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/epo-ops/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform OAuth handled by Pipeworx. Or BYO: ?_apiKey=<consumer_key>:<consumer_secret>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-epo-ops": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/epo-ops/mcp?_apiKey=your_consumer_key:your_consumer_secret"
      ]
    }
  }
}
search_patents requires: query

CQL search against EPO published patents.

query required string EPO CQL (ta=hydrogen, in=Tesla, pa=apple, pd>=2020, ...)
range optional string "start-end" 1-indexed, max 100/page
get_biblio requires: number

Bibliographic data for a patent.

number required string
get_family requires: number

INPADOC family — related applications worldwide.

number required string
get_abstract requires: number

Abstract text.

number required string
get_claims requires: number

Claims text.

number required string

Pan-European electricity TSO data — load, generation, day-ahead prices, cross-border flows.

EnergyEurope 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-entso-e": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/entso-e/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. BYO: ?_apiKey=<token> after registering + emailing [email protected].

Config with credentials
{
  "mcpServers": {
    "pipeworx-entso-e": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/entso-e/mcp?_apiKey=your_token"
      ]
    }
  }
}
day_ahead_prices requires: area, period_start, period_end

Day-ahead auction prices (€/MWh) per hour.

area required string Bidding-zone EIC code
period_start required string YYYYMMDDHHmm UTC
period_end required string
actual_load requires: area, period_start, period_end

Hourly measured electricity consumption.

area required string
period_start required string
period_end required string
actual_generation_per_type requires: area, period_start, period_end

Generation broken down by production type (solar, wind, nuclear, ...).

area required string
period_start required string
period_end required string
cross_border_flow requires: area_from, area_to, period_start, period_end

Physical flow across an interconnector.

area_from required string
area_to required string
period_start required string
period_end required string
installed_capacity requires: area, year

Year-end installed generation capacity by type.

area required string
year required number

RIPE Stat

live

IP / ASN / BGP intel — whois, geolocation, abuse contacts, AS neighbours. No auth.

NetworkThreat Intel 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ripe-stat": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ripe-stat/mcp"
      ]
    }
  }
}
whois requires: resource

Whois data for IP/prefix/ASN.

resource required string IP, prefix, or AS number
network_info requires: resource

Network info (prefix + ASN) for an IP.

resource required string
as_overview requires: asn

ASN summary.

asn required string
asn_neighbours requires: asn

BGP neighbours of an AS.

asn required string
bgp_state requires: resource

Current BGP routing state for a resource.

resource required string
abuse_contact requires: resource

Abuse contact email(s) for a resource.

resource required string
geoloc requires: resource

Country geolocation of an IP/prefix.

resource required string
prefix_overview requires: resource

Comprehensive prefix overview.

resource required string

DOAJ

live

Directory of Open Access Journals — curated peer-reviewed open-access articles and journals.

ResearchOpen Access 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-doaj": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/doaj/mcp"
      ]
    }
  }
}
search_articles requires: query

Search peer-reviewed OA articles. Lucene-style fields supported.

query required string
page optional number
page_size optional number 1-100 (default 10)
sort optional string field:dir
search_journals requires: query

Search OA journals.

query required string
page optional number
page_size optional number
sort optional string
get_article requires: id

Fetch an article by DOAJ id.

id required string
get_journal requires: id

Fetch a journal by DOAJ id.

id required string

DBLP

live

Computer Science bibliography — ~7M publications, ~3M authors. Free, no auth.

ResearchComputer Science 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dblp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dblp/mcp"
      ]
    }
  }
}
search_publications requires: query

Search CS papers, articles, theses.

query required string
hits optional number 1-1000 (default 30)
first optional number 0-based offset
search_authors requires: query

Search DBLP authors.

query required string
hits optional number
first optional number
search_venues requires: query

Search conferences and journals.

query required string
hits optional number
first optional number

Packagist

live

PHP Composer package registry — search and metadata.

DeveloperPackages 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-packagist": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/packagist/mcp"
      ]
    }
  }
}
search requires: query

Free-text search with optional type and tags.

query required string
type optional string
tags optional string
page optional number
per_page optional number 1-15
get_package requires: name

Full package metadata + versions.

name required string vendor/package
list_versions requires: name

Version timeline with release dates.

name required string
package_stats requires: name

Download counts + dependents.

name required string

Java/JVM artifact registry — ~12M artifacts via Solr search.

DeveloperPackages 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-maven-central": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/maven-central/mcp"
      ]
    }
  }
}
search requires: query

Full-text Solr search.

query required string
rows optional number 1-200
start optional number
search_by_coords

Lookup by groupId / artifactId / version.

group_id optional string
artifact_id optional string
version optional string
rows optional number
start optional number
list_versions requires: group_id, artifact_id

All versions for a groupId+artifactId.

group_id required string
artifact_id required string
rows optional number
latest_version requires: group_id, artifact_id

Most recent release for groupId+artifactId.

group_id required string
artifact_id required string

NuGet

live

.NET package registry — search, versions, latest, metadata.

DeveloperPackages 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nuget": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nuget/mcp"
      ]
    }
  }
}
search requires: query

Full-text search across NuGet packages.

query required string
prerelease optional boolean
take optional number 1-1000
skip optional number
get_package requires: id

Registration metadata + versions.

id required string
prerelease optional boolean
list_versions requires: id

All published versions.

id required string
latest_version requires: id

Most recent release.

id required string
prerelease optional boolean

Go modules

live

Go module proxy — versions + go.mod for any importable Go module.

DeveloperPackages 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pkg-go-dev": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pkg-go-dev/mcp"
      ]
    }
  }
}
list_versions requires: module_path

All published versions of a Go module.

module_path required string e.g. github.com/gin-gonic/gin
latest_version requires: module_path

Most recent released version + commit time.

module_path required string
get_module_info requires: module_path, version

Resolved version metadata.

module_path required string
version required string
get_go_mod requires: module_path, version

Raw go.mod for a version (dependency analysis).

module_path required string
version required string

DBnomics

live

Meta-aggregator over 80+ statistics providers (ECB, BLS, Eurostat, FRED, IMF, OECD, WB + most national stats agencies). ~1B time series. No auth.

DataEconomics 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dbnomics": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dbnomics/mcp"
      ]
    }
  }
}
search requires: query

Full-text search across all DBnomics providers.

query required string
limit optional number 1-1000
offset optional number
list_providers

List all available stats providers.

list_datasets requires: provider

List datasets for a provider.

provider required string
limit optional number
offset optional number
get_series requires: provider, dataset, series_code

Fetch a specific time series.

provider required string
dataset required string
series_code required string
observations optional boolean
find_series requires: provider, dataset

Browse series with dimension filters.

provider required string
dataset required string
dimensions optional object
limit optional number
offset optional number
observations optional boolean

Japanese government statistics — ~5000 tables across population, economy, labor, trade, prices, agriculture. Free with app ID.

DataGovernmentAsia 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-estat-japan": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/estat-japan/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. Or BYO via ?_apiKey=<appId>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-estat-japan": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/estat-japan/mcp?_apiKey=your_app_id"
      ]
    }
  }
}
search_stats requires: query

Search e-Stat statistical tables.

query required string
limit optional number
start_position optional number
lang optional string J | E
get_metadata requires: stats_data_id

Dimensions / code lists for a table.

stats_data_id required string
lang optional string
get_data requires: stats_data_id

Observations from a stats table with optional dimension filters.

stats_data_id required string
limit optional number
start_position optional number
lang optional string
filters optional object
list_data_catalog

Browse the high-level data catalog.

query optional string
limit optional number
start_position optional number
lang optional string

Singapore open data — ~2000 datasets + real-time weather, air quality, taxi positions, traffic. No auth.

DataGovernmentAsia 9 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-gov-sg": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-gov-sg/mcp"
      ]
    }
  }
}
search_datasets

Browse / search the dataset catalog.

query optional string
page optional number
page_size optional number
get_dataset requires: dataset_id

Dataset metadata + column schema.

dataset_id required string
query_dataset requires: dataset_id

Fetch rows from a dataset.

dataset_id required string
limit optional number
offset optional number
filters optional object
weather_now

Current temperature, humidity, wind, rain across Singapore weather stations.

air_quality_psi

PSI by region.

air_quality_pm25

PM2.5 µg/m³ by region.

uv_index

Current UV index.

taxi_availability

Live taxi positions.

traffic_incidents

Current expressway / road incidents.


NASA POWER

live

NASA Prediction of Worldwide Energy Resources — solar irradiance + meteorology for agriculture / renewable energy modeling. Global, 1981-present.

ClimateEnergyAgriculture 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nasa-power": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nasa-power/mcp"
      ]
    }
  }
}
point_data requires: latitude, longitude, start, end

Time-series observations for a single coordinate (daily, hourly, or monthly).

latitude required number
longitude required number
start required string YYYYMMDD
end required string YYYYMMDD
parameters optional string Comma-separated POWER parameter codes
community optional string AG | RE | SB
temporal optional string hourly | daily | monthly
climatology requires: latitude, longitude

Long-term monthly averages.

latitude required number
longitude required number
parameters optional string
community optional string
regional_data requires: latitude_min, latitude_max, longitude_min, longitude_max, start, end

Bounding-box query — daily/monthly over a rectangle.

latitude_min required number
latitude_max required number
longitude_min required number
longitude_max required number
start required string
end required string
parameters optional string
community optional string
temporal optional string

PVGIS

live

EU JRC Photovoltaic Geographical Information System — models PV system output, monthly irradiation, typical meteorological year. Global, keyless.

EnergyClimateEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pvgis": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pvgis/mcp"
      ]
    }
  }
}
pv_performance requires: latitude, longitude

Model annual + monthly PV output.

latitude required number
longitude required number
peakpower optional number
loss optional number
mountingplace optional string
angle optional number
aspect optional number
pvtechchoice optional string
monthly_radiation requires: latitude, longitude

Long-term monthly average irradiation.

latitude required number
longitude required number
horirrad optional boolean
optrad optional boolean
startyear optional number
endyear optional number
angle optional number
tmy requires: latitude, longitude

Typical Meteorological Year (hourly).

latitude required number
longitude required number
startyear optional number
endyear optional number

Open-Meteo

live

Global weather forecast + ERA5 historical reanalysis + air quality + marine + flood. Keyless (fair-use).

WeatherClimate 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-open-meteo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/open-meteo/mcp"
      ]
    }
  }
}
forecast requires: latitude, longitude

Up to 16-day forecast.

latitude required number
longitude required number
hourly optional string
daily optional string
forecast_days optional number 1-16
past_days optional number
timezone optional string
temperature_unit optional string
wind_speed_unit optional string
historical requires: latitude, longitude, start_date, end_date

ERA5 reanalysis 1940-present.

latitude required number
longitude required number
start_date required string
end_date required string
hourly optional string
daily optional string
timezone optional string
geocode requires: name

Resolve a place name to coordinates.

name required string
count optional number
language optional string
air_quality requires: latitude, longitude

PM2.5, PM10, ozone, NO2, AQI.

latitude required number
longitude required number
hourly optional string
forecast_days optional number
marine requires: latitude, longitude

Wave height + period + direction.

latitude required number
longitude required number
hourly optional string
forecast_days optional number
flood requires: latitude, longitude

Daily river discharge forecast (GloFAS).

latitude required number
longitude required number
daily optional string
forecast_days optional number

Official MLB statistics — schedule, scores, rosters, player stats, standings, box scores, live game feed. No auth.

Sports 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mlb-stats": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mlb-stats/mcp"
      ]
    }
  }
}
schedule

Game schedule by date / season / team.

date optional string
start_date optional string
end_date optional string
season optional string
team_id optional number
sport_id optional number
standings

Standings by league / division.

league_id optional string
season optional string
date optional string
standings_type optional string
get_team requires: team_id

Team profile.

team_id required number
team_roster requires: team_id

Players on a team.

team_id required number
roster_type optional string
season optional string
get_player requires: player_id

Player profile.

player_id required number
player_stats requires: player_id

Season / career stats.

player_id required number
group optional string
season optional string
stats optional string
get_boxscore requires: game_pk

Box score for a game.

game_pk required number
get_game_feed requires: game_pk

Live game feed (play-by-play).

game_pk required number

Sportsbook odds across 70+ books, 30+ leagues (NFL, NBA, MLB, NHL, soccer, MMA, golf, tennis, esports, cricket). Free tier 500 req/month.

SportsBetting 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-odds-api": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/odds-api/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. Or BYO: ?_apiKey=<key>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-odds-api": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/odds-api/mcp?_apiKey=your_key"
      ]
    }
  }
}
list_sports

List sports/leagues. Default in-season only.

all optional boolean
get_odds requires: sport_key

Current odds for upcoming + live events in a league.

sport_key required string
regions optional string
markets optional string
odds_format optional string
date_format optional string
bookmakers optional string
event_ids optional string
get_event_odds requires: sport_key, event_id

Odds for a single event — supports richer markets (player props).

sport_key required string
event_id required string
regions optional string
markets optional string
odds_format optional string
get_scores requires: sport_key

Live + recent final scores.

sport_key required string
days_from optional number
get_events requires: sport_key

Upcoming + live events (no odds — to discover event IDs).

sport_key required string
date_format optional string
event_ids optional string

Sports catalog across 50+ leagues — teams, players, events, league tables. Free public tier (key "3"); higher tiers via supporter key.

Sports 11 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-thesportsdb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/thesportsdb/mcp"
      ]
    }
  }
}
list_sports

All sports.

list_leagues

List leagues filtered by sport/country.

sport optional string
country optional string
search_teams requires: query

Search teams by name.

query required string
get_team requires: team_id

Team profile by ID.

team_id required string
league_teams requires: league_id

All teams in a league.

league_id required string
search_players requires: query

Search players by name.

query required string
get_player requires: player_id

Player profile by ID.

player_id required string
team_events_last requires: team_id

Last 5 events for a team.

team_id required string
team_events_next requires: team_id

Next 5 events for a team.

team_id required string
events_by_day requires: date

All events on a given date.

date required string
sport optional string
league optional string
league_table requires: league_id

Standings table for a league/season.

league_id required string
season optional string

Crypto prices, market cap, rankings, categories. Free Basic plan = 10k credits/month.

CryptoMarkets 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-coinmarketcap": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/coinmarketcap/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. Or BYO: ?_apiKey=<key>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-coinmarketcap": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/coinmarketcap/mcp?_apiKey=your_key"
      ]
    }
  }
}
quotes

Latest market quotes by symbol or CMC id.

symbol optional string
id optional string
convert optional string
listings_latest

Top-ranked coins by market cap.

start optional number
limit optional number 1-5000
sort optional string
convert optional string
metadata

Coin profile / logo / social.

symbol optional string
id optional string
global_metrics

Total market cap, dominance, active cryptos.

convert optional string
categories

List meta-categories.

start optional number
limit optional number
category requires: id

Coins in a category.

id required string
convert optional string

L2BEAT

live

Layer 2 ecosystem analytics — TVS (total value secured), activity, risk assessments, stage classification.

CryptoL2 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-l2beat": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/l2beat/mcp"
      ]
    }
  }
}
list_projects

All tracked L2 projects.

get_project requires: slug

Full project record by slug.

slug required string
tvs_breakdown

TVS breakdown by token + project today.

slug optional string
tvs_history

Historical TVS time series.

slug optional string
range optional string
activity

Daily transaction counts + UOPS.

slug optional string
range optional string

Chainlist

live

Registry of EVM chains — chainId, shortName, RPC URLs, explorers, faucets. Sourced from chainid.network.

CryptoInfrastructure 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-chainlist": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/chainlist/mcp"
      ]
    }
  }
}
list_chains

Browse / filter the EVM chain registry.

testnet optional boolean
name optional string Case-insensitive substring
active optional boolean
get_chain requires: chain_id_or_short_name

Fetch a chain by chainId or shortName.

chain_id_or_short_name required string
find_rpc requires: chain_id_or_short_name

RPC endpoints for a chain. https_only filters out plaintext.

chain_id_or_short_name required string
https_only optional boolean

Alternative crypto data source (~25k coins). Keyless free tier with 25k req/month.

CryptoMarkets 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-coinpaprika": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/coinpaprika/mcp"
      ]
    }
  }
}
list_coins

All tracked coins.

get_coin requires: coin_id

Coin profile.

coin_id required string
tickers_latest

Latest price + market data.

coin_id optional string
quotes optional string
historical_ohlc requires: coin_id, start

Daily OHLC + volume + market cap.

coin_id required string
start required string
end optional string
limit optional number 1-365
quote optional string usd | btc
global_market

Total market cap, dominance, etc.

search requires: query

Fuzzy search across coins, exchanges, ICOs, people.

query required string
modifier optional string
limit optional number

Global flight tracking + airport / airline reference data. Free tier 100 req/month.

TransportAviation 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-aviationstack": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/aviationstack/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. Or BYO: ?_apiKey=<key>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-aviationstack": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/aviationstack/mcp?_apiKey=your_key"
      ]
    }
  }
}
flights

Real-time + scheduled flights.

flight_iata optional string
flight_icao optional string
dep_iata optional string
arr_iata optional string
airline_iata optional string
flight_status optional string
limit optional number
offset optional number
airports

Airport directory.

search optional string
iata_code optional string
icao_code optional string
country_iso2 optional string
limit optional number
offset optional number
airlines

Airline directory.

search optional string
iata_code optional string
icao_code optional string
limit optional number
offset optional number
cities

City + primary-airport mapping.

search optional string
iata_code optional string
country_iso2 optional string
limit optional number
countries

Country reference.

search optional string
country_iso2 optional string
limit optional number
routes

Scheduled routes between airports.

dep_iata optional string
arr_iata optional string
airline_iata optional string
flight_number optional string
limit optional number

Global GTFS aggregator — ~3000 transit operators, ~50k feeds. Agencies, routes, stops, departures.

TransportTransit 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-transit-land": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/transit-land/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. Or BYO: ?_apiKey=<key>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-transit-land": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/transit-land/mcp?_apiKey=your_key"
      ]
    }
  }
}
search_agencies

Search transit operators.

name optional string
agency_id optional string
lat optional number
lon optional number
radius_m optional number
limit optional number
search_routes

Search routes by name / type / agency / location.

name optional string
route_type optional number
agency_id optional string
operator_id optional string
lat optional number
lon optional number
radius_m optional number
limit optional number
search_stops

Search stops/stations.

name optional string
stop_id optional string
lat optional number
lon optional number
radius_m optional number
served_by_route_type optional number
limit optional number
departures_at_stop requires: stop_id

Upcoming departures from a stop.

stop_id required string
service_date optional string
start_time optional string
end_time optional string
list_feeds

Available GTFS feeds.

spec optional string
limit optional number

METAR / TAF / PIREPs / AIRMET / SIGMET / winds aloft / station info from aviationweather.gov. Keyless.

AviationWeather 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-aviation-weather": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/aviation-weather/mcp"
      ]
    }
  }
}
metar requires: ids

METAR observations.

ids required string
hours_before optional number
format optional string
taf requires: ids

Terminal Aerodrome Forecasts.

ids required string
hours_before optional number
format optional string
pirep

Pilot reports.

id optional string
age optional number
distance_nm optional number
level optional number
format optional string
sigmet

Currently active SIGMETs.

format optional string
airmet

Currently active AIRMETs.

format optional string
gairmet

Graphical AIRMETs.

type optional string
format optional string
windsaloft

Winds aloft forecast.

region optional string
level optional string
stationinfo requires: ids

Aerodrome metadata.

ids required string

Largest open ML hub — search and inspect models, datasets, Spaces. Public reads keyless.

AI/MLResearch 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-huggingface": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/huggingface/mcp"
      ]
    }
  }
}
search_models

Browse / search models.

search optional string
author optional string
library optional string
language optional string
pipeline_tag optional string
tags optional string
sort optional string
direction optional string
limit optional number
full optional boolean
search_datasets

Browse / search datasets.

search optional string
author optional string
language optional string
task_categories optional string
sort optional string
direction optional string
limit optional number
full optional boolean
search_spaces

Browse / search Spaces.

search optional string
author optional string
sdk optional string
sort optional string
direction optional string
limit optional number
full optional boolean
get_model requires: repo_id

Detailed model info.

repo_id required string
revision optional string
get_dataset requires: repo_id

Detailed dataset info.

repo_id required string
revision optional string
get_space requires: repo_id

Detailed Space info.

repo_id required string
revision optional string
list_model_files requires: repo_id

List files in a model repo.

repo_id required string
revision optional string
path optional string
list_dataset_files requires: repo_id

List files in a dataset repo.

repo_id required string
revision optional string
path optional string
trending_models

Currently-trending models.

limit optional number
trending_datasets

Currently-trending datasets.

limit optional number

OpenReview

live

ML conference submissions and peer reviews (ICLR, NeurIPS, ICML, COLM, etc.). Public reads keyless.

AI/MLResearch 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openreview": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openreview/mcp"
      ]
    }
  }
}
list_venues

List venue groups.

query optional string
limit optional number
offset optional number
get_venue requires: group_id

Venue metadata by group id.

group_id required string
list_submissions requires: venue_id

Papers submitted to a venue.

venue_id required string
sort optional string
limit optional number
offset optional number
get_note requires: id

Single note (paper, review, comment, decision).

id required string
details optional string
get_paper requires: forum_id

Paper + all child threads.

forum_id required string
search_notes requires: query

Full-text search across notes.

query required string
content_field optional string
signature optional string
limit optional number
offset optional number

AIID — curated registry of real-world AI harms. Maintained by the Responsible AI Collaborative. No auth.

AI/MLSafety 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ai-incident-db": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ai-incident-db/mcp"
      ]
    }
  }
}
search_incidents

Search incidents by free-text + date range.

query optional string
start_date optional string
end_date optional string
limit optional number
offset optional number
get_incident requires: incident_id

Full incident with linked reports.

incident_id required number
list_recent

Most recent incidents.

limit optional number
list_taxonomies

Taxonomies used to classify incidents.


USAJOBS

live

US federal civilian job postings — ~10k active openings any given day. Free with key + User-Agent email.

JobsGovernment 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-usajobs": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/usajobs/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. BYO format: ?_apiKey=<auth_key>:<email>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-usajobs": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/usajobs/mcp?_apiKey=your_key:your_email"
      ]
    }
  }
}
search

Search USAJOBS announcements.

keyword optional string
location optional string
position_title optional string
organization optional string
pay_grade_low optional string
pay_grade_high optional string
remote optional boolean
results_per_page optional number
page optional number
get_job requires: announcement_number

Single announcement by number.

announcement_number required string
list_agencies

Federal agency reference.

list_pay_grades

Pay grade codes.

list_occupational_series

Occupational series codes.


Adzuna

live

Global job-board aggregator — ~1.5M jobs across 16 countries + salary histograms, top companies, historical volume / wage data.

JobsLabor 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-adzuna": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/adzuna/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. BYO format: ?_apiKey=<app_id>:<app_key>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-adzuna": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/adzuna/mcp?_apiKey=your_app_id:your_app_key"
      ]
    }
  }
}
search requires: country

Search jobs in a country.

country required string
what optional string
what_phrase optional string
where optional string
distance optional number
results_per_page optional number
page optional number
salary_min optional number
salary_max optional number
full_time optional boolean
permanent optional boolean
sort optional string
max_days_old optional number
categories requires: country

Normalized job categories.

country required string
salary_histogram requires: country

Wage distribution.

country required string
what optional string
where optional string
location_filter optional string
top_companies requires: country

Top hiring companies for a filter.

country required string
what optional string
where optional string
history requires: country

Historical monthly job volume + mean salary.

country required string
months optional number
location optional string
category optional string
regional_stats requires: country

Current job counts by region.

country required string
location_filter optional string
category optional string

Remotive

live

Curated remote-only job board. Keyless.

JobsRemote 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-remotive": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/remotive/mcp"
      ]
    }
  }
}
search

Search remote jobs.

search optional string
category optional string
company_name optional string
limit optional number
list_categories

All Remotive categories.

get_company requires: slug

Company profile + listings.

slug required string

DailyMed

live

FDA Structured Product Labels via NLM DailyMed — ~150k drug labels with dosage, warnings, indications. Keyless.

HealthPharma 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dailymed": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dailymed/mcp"
      ]
    }
  }
}
search_drugs

Search Structured Product Labels.

name optional string
application_number optional string
ndc optional string
rxcui optional string
manufacturer optional string
page optional number
pagesize optional number
get_drug requires: set_id

Full SPL by set_id.

set_id required string
list_labels_for_drug_name requires: drug_name

All labels mentioning a drug name.

drug_name required string
page optional number
pagesize optional number
recent_updates

Recently updated labels.

limit optional number
list_classes

Pharmacologic / drug-class reference.

class_code optional string
type optional string

Comprehensive nutrient database for US foods (~600k items). Branded, Foundation, SR Legacy, Survey, Experimental data types.

HealthFood 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-usda-fdc": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/usda-fdc/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. Or BYO: ?_apiKey=<key>.

Config with credentials
{
  "mcpServers": {
    "pipeworx-usda-fdc": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/usda-fdc/mcp?_apiKey=your_key"
      ]
    }
  }
}
search_foods requires: query

Search FDC foods.

query required string
data_type optional string
brand_owner optional string
page_size optional number
page_number optional number
sort_by optional string
sort_order optional string
get_food requires: fdc_id

Full food record by FDC id.

fdc_id required number
format optional string
nutrients optional string
list_foods

Paginated browse.

data_type optional string
page_size optional number
page_number optional number
sort_by optional string
sort_order optional string
list_food_groups

USDA food group reference.

nutrients_for_food requires: fdc_id

Just the nutrient values for a food.

fdc_id required number
nutrient_numbers optional string

CMS National Provider Identifier Registry — every US healthcare provider (~7M). Search by name, taxonomy, location, NPI. Keyless.

HealthGovernment 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-npi-registry": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/npi-registry/mcp"
      ]
    }
  }
}
search

Search providers (requires at least one filter beyond limit).

number optional string
name optional string
first_name optional string
last_name optional string
organization_name optional string
taxonomy optional string
city optional string
state optional string
postal_code optional string
country_code optional string
npi_type optional string
address_purpose optional string
limit optional number
skip optional number
get_provider requires: npi

Fetch a provider by 10-digit NPI.

npi required string

NIH/NLM consumer health info — map clinical codes (ICD-10, SNOMED, RxCUI, LOINC, NDC) to plain-language topics; free-text search across topics. Keyless.

Health 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-medlineplus": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/medlineplus/mcp"
      ]
    }
  }
}
connect requires: code, code_system

Map a clinical code to MedlinePlus topics.

code required string
code_system required string ICD-10-CM | SNOMED | RxNorm | LOINC | NDC | MeSH | HGNC
lang optional string en | es
search requires: query

Free-text search across MedlinePlus topics.

query required string
db optional string healthTopics | healthTopicsSpanish | drug | herb | meshhd | genetic
limit optional number
retstart optional number
knowledge_response_type optional string

BookBrainz

live

Open book metadata DB from MetaBrainz (sister of MusicBrainz). Works, editions, authors, publishers, series. Keyless.

BooksResearch 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bookbrainz": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bookbrainz/mcp"
      ]
    }
  }
}
search requires: query, type

Search any entity type by free-text.

query required string
type required string work | edition | author | publisher | series | edition-group
limit optional number
offset optional number
lookup requires: type, bbid

Fetch a single entity by BookBrainz UUID.

type required string
bbid required string
includes optional string
browse requires: type

Browse entities filtered by a related entity.

type required string
author optional string
work optional string
edition optional string
publisher optional string
series optional string
edition_group optional string
limit optional number
offset optional number

Google Books search + volume metadata (~40M+ books). Public reads keyless; optional key for higher rate limits.

Books 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-google-books": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/google-books/mcp"
      ]
    }
  }
}
search requires: query

Full-text search.

query required string
search_field optional string intitle | inauthor | inpublisher | subject | isbn | lccn | oclc
filter optional string
language optional string
print_type optional string
order_by optional string
limit optional number
offset optional number
get_volume requires: id

Volume detail.

id required string
get_by_isbn requires: isbn

Lookup by ISBN-10 or ISBN-13.

isbn required string
list_bookshelf requires: user_id

Public bookshelf by user id.

user_id required string
shelf optional string

Official Westminster APIs — Members, Bills, Hansard (debates). No auth.

GovernmentLegislatureEurope 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-uk-parliament": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/uk-parliament/mcp"
      ]
    }
  }
}
search_members

Search MPs and Lords.

name optional string
location optional string
party optional string
house optional number 1=Commons, 2=Lords
is_current optional boolean
take optional number
skip optional number
get_member requires: id

Member detail by id.

id required number
includes optional string
search_bills

Search bills.

query optional string
session optional number
stage optional number
member_id optional number
current_house optional number
sort optional string
take optional number
skip optional number
get_bill requires: bill_id

Bill detail.

bill_id required number
bill_stages requires: bill_id

All stages of a bill.

bill_id required number
search_hansard requires: query

Search debate contributions.

query required string
house optional string
date_from optional string
date_to optional string
member_id optional number
take optional number
skip optional number
recent_divisions

Recent recorded votes.

house optional string
date_from optional string
take optional number

German Bundestag DIP API — plenary minutes, bills, parliamentary questions, members. Free with API key.

GovernmentLegislatureEurope 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bundestag-de": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bundestag-de/mcp"
      ]
    }
  }
}
🔑 Some tools require authentication

Platform key handled by Pipeworx. Or BYO: ?_apiKey=<key>. The pack also falls back to the public demo key documented on dip.bundestag.de.

Config with credentials
{
  "mcpServers": {
    "pipeworx-bundestag-de": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote@latest",
        "https://gateway.pipeworx.io/bundestag-de/mcp?_apiKey=your_key"
      ]
    }
  }
}
search_activities

Combined activity feed.

query optional string
ressort optional string
descriptor optional string
date_from optional string
date_to optional string
format optional string
cursor optional string
num optional number
search_drucksachen

Printed documents (bills, motions, ...).

query optional string
drucksachentyp optional string
date_from optional string
date_to optional string
cursor optional string
num optional number
get_drucksache requires: id

Drucksache detail.

id required string
search_plenarprotokolle

Plenary meeting transcripts.

query optional string
date_from optional string
date_to optional string
cursor optional string
num optional number
get_plenarprotokoll requires: id

Plenary protocol detail.

id required string
search_persons

Search people in DIP.

query optional string
cursor optional string
num optional number

Civic-tech mirror of the French Assemblée nationale — member activity, votes, debates, questions. Keyless.

GovernmentLegislatureEurope 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nosdeputes-fr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nosdeputes-fr/mcp"
      ]
    }
  }
}
list_deputies

List sitting deputies.

active optional boolean
group optional string
departement optional string
legislature optional string
get_deputy requires: slug_or_id

Deputy profile.

slug_or_id required string
legislature optional string
search_interventions requires: query

Debate contributions.

query required string
deputy_slug optional string
date_from optional string
date_to optional string
limit optional number
legislature optional string
search_questions

Written or oral questions.

query optional string
deputy_slug optional string
type optional string
limit optional number
legislature optional string
list_votes

Recent recorded votes.

deputy_slug optional string
limit optional number
legislature optional string
list_groups

Political groups.

legislature optional string

Civic-tech mirror of the Parliament of Canada — Hansard debates, bills, votes, MPs, committee meetings. Keyless.

GovernmentLegislature 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openparliament-ca": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openparliament-ca/mcp"
      ]
    }
  }
}
search_debates requires: query

Hansard contributions.

query required string
date_from optional string
date_to optional string
politician optional string
party optional string
limit optional number
offset optional number
list_bills

Bills.

session optional string
sponsor optional string
status optional string
limit optional number
offset optional number
get_bill requires: session, number

Bill detail.

session required string
number required string
list_votes

Recorded votes.

session optional string
limit optional number
offset optional number
list_politicians

Current + historic MPs.

current optional boolean
party optional string
province optional string
name optional string
limit optional number
offset optional number
get_politician requires: slug

Politician profile.

slug required string
list_committees

House committees.

session optional string
limit optional number
offset optional number
list_committee_meetings

Committee meetings.

committee_slug optional string
date_from optional string
date_to optional string
limit optional number

Real-time DEX prices and liquidity across all major EVM + Solana chains. Keyless.

CryptoMarkets 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dexscreener": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dexscreener/mcp"
      ]
    }
  }
}
get_pair requires: chain, pair_address

Single pair detail.

chain required string
pair_address required string
get_token requires: chain, token_address

All pairs for a token on one chain.

chain required string
token_address required string
search_pairs requires: query

Free-text search across pairs.

query required string
latest_token_profiles

Newest token profiles.

latest_boosted_tokens

Tokens being actively promoted.

token_boosts_top

Most-boosted tokens.

chain optional string
token optional string

Blockscout

live

Open-source multi-chain block explorer (~30 EVM networks). Address, tx, block, token lookup + universal search. Keyless.

CryptoInfrastructure 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-blockscout": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/blockscout/mcp"
      ]
    }
  }
}
get_address requires: chain, address

Address summary.

chain required string
address required string
get_address_txns requires: chain, address

Recent transactions for an address.

chain required string
address required string
limit optional number
filter optional string
get_address_token_transfers requires: chain, address

ERC-20/721/1155 transfers.

chain required string
address required string
token optional string
limit optional number
get_transaction requires: chain, tx_hash

Transaction detail.

chain required string
tx_hash required string
get_token requires: chain, contract

Token metadata.

chain required string
contract required string
get_block requires: chain, block_number_or_hash

Block detail.

chain required string
block_number_or_hash required string
search requires: chain, query

Universal search.

chain required string
query required string
list_chains

Supported chain slugs and hosts.


Bitcoin block explorer + mempool / fee stats. Mainnet, testnet, signet, Liquid sidechain. Keyless.

CryptoBitcoin 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mempool-space": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mempool-space/mcp"
      ]
    }
  }
}
recommended_fees

Current sat/vB fee recommendations.

network optional string
mempool_stats

Current mempool size / count / total fees.

network optional string
block_height

Current chain tip height.

network optional string
get_block requires: hash_or_height

Block detail by hash or height.

hash_or_height required string
network optional string
get_transaction requires: txid

Transaction detail.

txid required string
network optional string
get_tx_status requires: txid

Confirmation state.

txid required string
network optional string
get_address requires: address

Address summary.

address required string
network optional string
get_address_transactions requires: address

Recent transactions for an address.

address required string
limit optional number
network optional string
hashrate

Hashrate + difficulty history.

period optional string
network optional string
mining_pools

Block share by mining pool.

period optional string
network optional string

International Space Station current position + people currently in space. Keyless.

SpaceReal-time 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-open-notify": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/open-notify/mcp"
      ]
    }
  }
}
iss_now

Current ISS lat/lon.

astros

People currently in space.


NASA EONET

live

Earth Observatory Natural Event Tracker — wildfires, storms, volcanoes, icebergs, dust. Auto-curated from official sources. Keyless.

SpaceEnvironmentReal-time 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nasa-eonet": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nasa-eonet/mcp"
      ]
    }
  }
}
events

List natural events.

status optional string
days optional number
source optional string
category optional string
bbox optional string
limit optional number
magnitude_id optional string
magnitude_min optional number
magnitude_max optional number
get_event requires: event_id

Single event detail.

event_id required string
geojson

Events as GeoJSON FeatureCollection.

status optional string
days optional number
category optional string
bbox optional string
limit optional number
list_categories

EONET category reference.

list_sources

Aggregated data sources.

list_layers

Visualization layer reference.

category optional string

Global rocket launches, agencies, astronauts, expeditions, events. Free tier 15 req/hr.

Space 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-launch-library": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/launch-library/mcp"
      ]
    }
  }
}
upcoming_launches

Upcoming + currently-active launches.

limit optional number
offset optional number
search optional string
agency optional string
status optional string
previous_launches

Historical launches.

limit optional number
offset optional number
search optional string
agency optional string
year optional number
get_launch requires: id

Single launch detail.

id required string
list_agencies

Space agencies + private operators.

search optional string
type optional string
limit optional number
list_astronauts

Astronaut directory.

search optional string
agency optional string
nationality optional string
in_space optional boolean
limit optional number
list_events

Non-launch space events.

search optional string
type optional string
upcoming optional boolean
limit optional number
list_expeditions

Crewed expeditions.

in_progress optional boolean
limit optional number

Open Source Routing Machine — routing, distance matrix, snap-to-road, map-matching, TSP. Keyless via demo server.

MapsRouting 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-osrm": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/osrm/mcp"
      ]
    }
  }
}
route requires: coordinates

Fastest route between waypoints.

coordinates required string Semicolon-separated lon,lat pairs
profile optional string car | bike | foot
overview optional string simplified | full | false
alternatives optional boolean
steps optional boolean
annotations optional string
table requires: coordinates

Distance/duration matrix.

coordinates required string
profile optional string
sources optional string
destinations optional string
annotations optional string
nearest requires: longitude, latitude

Snap to road network.

longitude required number
latitude required number
profile optional string
number optional number
match requires: coordinates

Map-match a noisy GPS trace.

coordinates required string
profile optional string
radiuses optional string
trip requires: coordinates

TSP-like trip solver.

coordinates required string
profile optional string
roundtrip optional boolean
source optional string
destination optional string

Photon

live

komoot's OSM geocoder — Elasticsearch-backed, strong at partial / autocomplete queries. Keyless.

MapsGeocoding 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-photon": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/photon/mcp"
      ]
    }
  }
}
search requires: query

Forward geocode.

query required string
lat optional number
lon optional number
location_bias_scale optional number
zoom optional number
limit optional number
lang optional string
osm_tag optional string
layer optional string
bbox optional string
reverse requires: lat, lon

Reverse geocode.

lat required number
lon required number
radius optional number
lang optional string
limit optional number
layer optional string

Datamuse

live

English word-relation lookup — synonyms, rhymes, "sounds like", "spelled like", predictive completion. Keyless.

Linguistics 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datamuse": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datamuse/mcp"
      ]
    }
  }
}
words

Generic Datamuse query.

means_like optional string
sounds_like optional string
spelled_like optional string
follows optional string
precedes optional string
related optional string
topics optional string
max optional number
means_like requires: word

Synonyms / semantic relatives.

word required string
max optional number
rhymes requires: word

Perfect or approximate rhymes.

word required string
perfect optional boolean
max optional number
sounds_like requires: word

Phonetic neighbors.

word required string
max optional number
spelled_like requires: pattern

Wildcard-pattern matches.

pattern required string
max optional number
predicts_next requires: after

Autocomplete prediction.

after required string
before optional string
max optional number
homophones requires: word

Same pronunciation, different spelling.

word required string
max optional number

Wiktionary

live

Multilingual dictionary via the MediaWiki REST API — definitions, etymology, pronunciations across 100+ language editions. Keyless.

Linguistics 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wiktionary": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wiktionary/mcp"
      ]
    }
  }
}
definition requires: word

Parsed definitions grouped by part-of-speech.

word required string
lang optional string
summary requires: word

Page summary.

word required string
lang optional string
search requires: query

Wiktionary search.

query required string
lang optional string
limit optional number
etymology requires: word

Etymology section.

word required string
lang optional string
pronunciations requires: word

IPA / phonetic transcriptions.

word required string
lang optional string

Wikiquote

live

Sourced quotations by person, work, or topic. Keyless.

ReferenceLinguistics 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wikiquote": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wikiquote/mcp"
      ]
    }
  }
}
search requires: query

Title + fulltext search.

query required string
lang optional string
limit optional number
summary requires: title

Page summary.

title required string
lang optional string
quotes requires: title

Extract sourced quotation items from a page.

title required string
lang optional string
limit optional number
quote_of_the_day

Daily featured quote.

lang optional string

Full SPARQL access to Wikidata Query Service (~100M items, 1.5B statements). Complements the wikidata pack (entity search).

Knowledge GraphResearch 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wikidata-sparql": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wikidata-sparql/mcp"
      ]
    }
  }
}
query requires: sparql

Run a SPARQL query.

sparql required string
format optional string
instances_of requires: entity_id

Items that are an instance of a class.

entity_id required string
lang optional string
limit optional number
subclasses_of requires: entity_id

Transitive subclass tree.

entity_id required string
lang optional string
limit optional number
properties_of requires: entity_id

All statements about an entity.

entity_id required string
lang optional string
limit optional number
entities_at requires: latitude, longitude

Geo-spatial query: items near a point.

latitude required number
longitude required number
radius_km optional number
instance_of optional string
lang optional string
limit optional number

DBpedia

live

Structured knowledge extracted from Wikipedia — SPARQL + Lookup. Keyless.

Knowledge GraphResearch 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dbpedia": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dbpedia/mcp"
      ]
    }
  }
}
lookup requires: query

Entity-resolution friendly lookup.

query required string
max_results optional number
type optional string
sparql requires: query

Execute SPARQL.

query required string
format optional string
resource requires: uri

All triples about a resource.

uri required string
abstract requires: label

Prose abstract for a topic.

label required string
lang optional string

ConceptNet

live

Open multilingual knowledge graph of word/phrase relations — IsA, PartOf, UsedFor, RelatedTo, AtLocation, Causes. ~28M edges, 80+ languages. Keyless.

Knowledge GraphLinguistics 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-conceptnet": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/conceptnet/mcp"
      ]
    }
  }
}
lookup requires: term

All edges touching a term.

term required string
lang optional string
limit optional number
offset optional number
only_rel optional string
end_node_lang optional string
query

Generic /query edge search.

rel optional string
start optional string
end optional string
node optional string
source optional string
limit optional number
offset optional number
relatedness requires: node1, node2

Semantic-relatedness score 0..1.

node1 required string
node2 required string
lang optional string

Apple iTunes Store catalog search — music, movies, podcasts, audiobooks, ebooks, apps. Keyless.

MediaCatalog 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-itunes-search": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/itunes-search/mcp"
      ]
    }
  }
}
search requires: term

Search iTunes catalog.

term required string
media optional string
entity optional string
attribute optional string
country optional string
limit optional number
lang optional string
explicit optional string
lookup

Exact-ID lookup.

id optional string
bundle_id optional string
isbn optional string
upc optional string
amg_artist_id optional string
amg_album_id optional string
country optional string
entity optional string
limit optional number
top_movies

Top-grossing movies chart.

country optional string
limit optional number
top_podcasts

Top podcasts chart.

country optional string
limit optional number
top_books

Top ebooks chart.

country optional string
limit optional number
free_or_paid optional string

Open podcast directory — ~3M podcasts indexed worldwide. Keyless.

MediaCatalog 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fyyd": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fyyd/mcp"
      ]
    }
  }
}
search_podcasts requires: term

Search podcasts by title.

term required string
lang optional string
count optional number
page optional number
search_episodes requires: term

Search episodes by title + description.

term required string
lang optional string
count optional number
page optional number
get_podcast requires: podcast_id

Podcast metadata + recent episodes.

podcast_id required number
get_podcast_by_url requires: feed_url

Resolve RSS feed URL to fyyd id.

feed_url required string
latest_episodes requires: podcast_id

Latest episodes for a podcast.

podcast_id required number
count optional number
page optional number
top_podcasts

Currently popular podcasts.

category optional string
lang optional string
count optional number
categories

Category tree.


JSDelivr

live

CDN package stats, file listing, version resolution for npm + GitHub. Keyless.

DeveloperPackages 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-jsdelivr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/jsdelivr/mcp"
      ]
    }
  }
}
npm_package_stats requires: package_name

Request counts + bandwidth for an npm package.

package_name required string
period optional string
gh_repo_stats requires: owner, repo

Stats for files served from a GitHub repo.

owner required string
repo required string
period optional string
top_npm_packages

Top-served npm packages.

period optional string
by optional string
limit optional number
list_npm_files requires: package_name

Files inside a published npm version.

package_name required string
version optional string
resolve_version requires: package_name

Resolve a semver range to a concrete version.

package_name required string
range optional string
list_npm_versions requires: package_name

All published versions.

package_name required string

Bundle-size analysis for npm packages — minified + gzipped, tree-shakeability, dependency count. Keyless.

DeveloperPackages 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bundlephobia": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bundlephobia/mcp"
      ]
    }
  }
}
size requires: package

Bundle size analysis.

package required string
version optional string
record optional boolean
similar requires: package

Packages with similar functionality + their sizes.

package required string
version optional string
history requires: package, versions

Compare size across recent versions.

package required string
versions required string
recent_searches

Recent searches on bundlephobia.com.


Install-size analysis for npm packages — measures full node_modules footprint including transitive deps. Keyless.

DeveloperPackages 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-packagephobia": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/packagephobia/mcp"
      ]
    }
  }
}
size requires: package

Install + publish size.

package required string
version optional string

Can I Use

live

Browser compatibility data for HTML / CSS / JS / Web API features. Sourced from Fyrd/caniuse. Keyless.

DeveloperWeb 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-caniuse": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/caniuse/mcp"
      ]
    }
  }
}
feature requires: name

Full feature record.

name required string
search requires: query

Search features.

query required string
limit optional number
list_browsers

Browser ids + version tracks.

support requires: feature, browser

Is this feature supported in this browser version?

feature required string
browser required string
version optional string

MDN Search

live

Mozilla Developer Network search + page summaries + BCD blocks. Keyless.

DeveloperWeb 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mdn-search": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mdn-search/mcp"
      ]
    }
  }
}
search requires: query

Full-text MDN search.

query required string
locale optional string
size optional number
page optional number
summary requires: slug

Page summary by slug.

slug required string
locale optional string
bcd requires: slug

Browser Compatibility Data block.

slug required string
locale optional string

JSON Schema catalog — find and fetch schemas for hundreds of well-known config formats. Keyless.

DeveloperJSON Schema 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-schemastore": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/schemastore/mcp"
      ]
    }
  }
}
list_schemas

List catalog entries (optional filter).

filter optional string
limit optional number
find_schema_for requires: filename

Find schemas whose fileMatch covers a given filename.

filename required string
fetch_schema requires: url

Fetch raw JSON Schema document (schemastore-hosted URLs only).

url required string
lookup requires: name

Exact-name lookup in the catalog.

name required string

gitignore

live

Canonical .gitignore templates from github/gitignore. Keyless.

DeveloperTooling 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gitignore": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gitignore/mcp"
      ]
    }
  }
}
list_templates

List all template names.

get_template requires: name

Fetch raw .gitignore content for one template.

name required string
compose requires: names

Compose a combined .gitignore from multiple templates.

names required array

Canonical SPDX open-source license list with full text and OSI/FSF flags. Keyless.

DeveloperLegal 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-spdx-license": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/spdx-license/mcp"
      ]
    }
  }
}
list_licenses

List SPDX licenses with optional OSI/FSF/deprecated filters.

osiApproved optional boolean
fsfLibre optional boolean
deprecated optional boolean
get_license requires: id

Get metadata for one SPDX license by id.

id required string
get_license_text requires: id

Get full license text for one SPDX license id.

id required string
search requires: query

Substring search across id and full name.

query required string

Biodiversity taxa from EOL — search names, fetch taxon pages, hierarchies. Keyless.

ScienceBiodiversity 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-eol": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/eol/mcp"
      ]
    }
  }
}
search requires: query

Search EOL for a name (common or scientific).

query required string
limit optional number
get_page requires: id

Fetch a taxon page by EOL id.

id required number
detail optional boolean
pages_by_name requires: name

Find EOL page id(s) for an exact scientific name.

name required string
hierarchy requires: taxon_id

Taxonomic hierarchy for an EOL hierarchy entry id.

taxon_id required number

Europe PMC

live

Europe PubMed Central — biomedical literature search, abstracts, references, citations. Keyless.

ScienceBiomedical 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-europepmc": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/europepmc/mcp"
      ]
    }
  }
}
search requires: query

Lucene-style search across Europe PMC.

query required string
page optional number
pageSize optional number
get_article requires: source, id

Full article record by (source, id).

source required string
id required string
abstract requires: source, id

Title + abstract by (source, id).

source required string
id required string
references requires: source, id

References cited by one article.

source required string
id required string
pageSize optional number
citations requires: source, id

Articles citing one article.

source required string
id required string
pageSize optional number

bioRxiv

live

bioRxiv + medRxiv preprint API — fetch preprints by DOI or date, see which were later published. Keyless.

SciencePreprints 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-biorxiv": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/biorxiv/mcp"
      ]
    }
  }
}
details requires: server

Preprint metadata by DOI or date range.

server required string
doi optional string
date_or_range optional string
cursor optional number
published requires: server, date_or_range

Preprints subsequently published in journals.

server required string
date_or_range required string
cursor optional number
publisher requires: server, prefix, date_or_range

Preprints subsequently published by a DOI prefix.

server required string
prefix required string
date_or_range required string
cursor optional number
summary

bioRxiv counts (interval "m" or "y"). bioRxiv only.

interval optional string

Deezer

live

Deezer public catalog — search and look up tracks, albums, artists, playlists. Keyless.

MusicCatalog 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-deezer": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/deezer/mcp"
      ]
    }
  }
}
search requires: query

Search tracks/albums/artists/playlists.

type optional string
query required string
limit optional number
track requires: id

Track metadata.

id required number
album requires: id

Album metadata + tracklist.

id required number
artist requires: id

Artist metadata.

id required number
artist_top requires: id

Top tracks for an artist.

id required number
limit optional number
chart

Current chart by genre id (0 = all).

genre_id optional number

Lyrics OVH

live

Quick song-lyrics lookup via lyrics.ovh. Keyless.

MusicLyrics 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-lyrics-ovh": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/lyrics-ovh/mcp"
      ]
    }
  }
}
lyrics requires: artist, title

Lyrics for an exact (artist, title).

artist required string
title required string
suggest requires: query

Title/artist suggestions for a free-form query.

query required string
limit optional number

Bitcoin block explorer (mainnet + testnet) — blocks, transactions, addresses, mempool, fees. Keyless.

CryptoBitcoin 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-blockstream-info": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/blockstream-info/mcp"
      ]
    }
  }
}
tip_height

Current block height.

network optional string
block requires: hash_or_height

Block by hash or height.

hash_or_height required string
network optional string
transaction requires: txid

Transaction details.

txid required string
network optional string
tx_status requires: txid

Confirmation status for a txid.

txid required string
network optional string
address requires: address

Address summary.

address required string
network optional string
address_txs requires: address

Recent transactions for an address.

address required string
network optional string
mempool

Mempool size + fee histogram.

network optional string
fee_estimates

Recommended sat/vB by confirmation target.

network optional string

Public Open Collective data — collective info, members, transactions, events. Keyless.

FinanceOSS 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opencollective": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opencollective/mcp"
      ]
    }
  }
}
collective requires: slug

Public collective info by slug.

slug required string
members requires: slug

Members for a collective (optional role).

slug required string
role optional string
transactions requires: slug

Transactions for a collective.

slug required string
type optional string
limit optional number
events requires: slug

Events for a collective.

slug required string

Cleveland Museum of Art Open Access — ~63k artworks, many CC0. Keyless.

ArtOpen Access 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-clevelandart": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/clevelandart/mcp"
      ]
    }
  }
}
search

Search artworks with optional filters.

query optional string
type optional string
artist optional string
has_image optional boolean
cc0 optional boolean
limit optional number
skip optional number
get_artwork requires: id

Single artwork by accession number or id.

id required string
creators

Search creators by name.

query optional string
limit optional number
exhibitions

Search exhibitions by title.

query optional string
limit optional number

Openverse

live

Creative-Commons-licensed image + audio search (Wikimedia, Flickr, museums). Keyless (anonymous rate-limit).

MediaOpen Access 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openverse": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openverse/mcp"
      ]
    }
  }
}
search_images requires: query

Search CC-licensed images.

query required string
license optional string
license_type optional string
size optional string
source optional string
page optional number
page_size optional number
search_audio requires: query

Search CC-licensed audio.

query required string
license optional string
license_type optional string
source optional string
page optional number
page_size optional number
get_image requires: id

Single image record by id.

id required string
get_audio requires: id

Single audio record by id.

id required string
image_related requires: id

Related images.

id required string
audio_related requires: id

Related audio.

id required string

abuse.ch botnet C&C IP blocklist (Dridex/Emotet/Qakbot/etc). Keyless.

SecurityThreat Intel 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-feodotracker": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/feodotracker/mcp"
      ]
    }
  }
}
list

Current C&C blocklist (optional family/status filter).

family optional string
status optional string
limit optional number
check_ip requires: ip

Is the given IP currently listed?

ip required string
recent

Entries first seen in the last N hours.

hours optional number
aggressive

Full aggressive blocklist.


Lichess

live

Lichess public API — players, ratings, top lists, cloud eval, tablebase, opening explorer. Keyless.

ChessGames 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-lichess": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/lichess/mcp"
      ]
    }
  }
}
user requires: username

Player profile.

username required string
users requires: usernames

Bulk lookup (up to 300).

usernames required array
user_status requires: usernames

Online / playing status.

usernames required array
user_performance requires: username, perf

Single-variant performance + best rated game.

username required string
perf required string
top_players requires: perf

Top-rated players for one variant.

perf required string
limit optional number
leaderboards

Top-10 across all variants.

tv_channels

Currently-featured TV games.

cloud_eval requires: fen

Stockfish cloud evaluation for a FEN.

fen required string
multi_pv optional number
tablebase requires: fen

Syzygy tablebase lookup.

fen required string
variant optional string
opening_explorer requires: scope

Lichess/Masters/Player opening DB.

scope required string
fen optional string
play optional string
player optional string
speeds optional string
ratings optional string
moves optional number

Codeforces

live

Competitive-programming users, contests, problems, submissions. Keyless.

ProgrammingCompetitive 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-codeforces": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/codeforces/mcp"
      ]
    }
  }
}
user requires: handles

User profile(s).

handles required array
user_rating requires: handle

Rating history.

handle required string
user_status requires: handle

Recent submissions.

handle required string
from optional number
count optional number
contest_list

All contests (regular or gym).

gym optional boolean
contest_standings requires: contest_id

Standings + problems for one contest.

contest_id required number
handles optional array
from optional number
count optional number
problemset

Problemset by tag.

tags optional array
problemset_name optional string
recent_actions

Global recent-actions feed.

max_count optional number
blog_entry_view requires: blog_id

Full blog entry by id.

blog_id required number

Frinkiac

live

Quote-based screencap search for The Simpsons, Futurama, Rick and Morty. Keyless.

MediaQuotes 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-frinkiac": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/frinkiac/mcp"
      ]
    }
  }
}
search requires: query

Find screencaps matching a quote.

show optional string
query required string
limit optional number
random

Random screencap + caption.

show optional string
caption requires: episode, timestamp

Caption for one (episode, timestamp).

show optional string
episode required string
timestamp required number

MET Norway

live

Norwegian Meteorological Institute (api.met.no, behind yr.no) — global forecast, sunrise/sunset, ocean and Nordics specials. Keyless.

Weather 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-met-no": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/met-no/mcp"
      ]
    }
  }
}
forecast requires: lat, lon

Compact 10-day forecast.

lat required number
lon required number
altitude optional number
nowcast requires: lat, lon

90-min precipitation nowcast (Nordics).

lat required number
lon required number
sunrise requires: lat, lon

Sunrise / sunset / moon.

lat required number
lon required number
date optional string
offset optional string
airquality requires: lat, lon

Air-quality forecast (Norway).

lat required number
lon required number
areaclass optional string
oceanforecast requires: lat, lon

Ocean forecast.

lat required number
lon required number

Code::Stats public profiles — per-user coding XP across languages, recent activity. Keyless.

DeveloperProfile 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-codestats": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/codestats/mcp"
      ]
    }
  }
}
user requires: username

Public profile + XP breakdown.

username required string
recent requires: username

Recent (~12h) coding activity.

username required string

Flickr public photo feeds — keyless slice of the Flickr API. Recent uploads, by tag, by user, by group.

MediaPhotos 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-flickr-public": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/flickr-public/mcp"
      ]
    }
  }
}
recent

Recent public uploads (optional tag filter).

tags optional string
tagmode optional string
limit optional number
by_user requires: user_id

Public uploads from one user.

user_id required string
limit optional number
by_group requires: group_id

Public uploads in one group.

group_id required string
limit optional number

UniProt

live

UniProt — canonical protein-sequence and -function knowledge-base (EBI). Keyless.

BioProteins 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-uniprot": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/uniprot/mcp"
      ]
    }
  }
}
search requires: query

UniProtKB Lucene search.

query required string
format optional string
size optional number
fields optional string
get requires: accession

Entry by accession.

accession required string
format optional string
proteomes_search requires: query

Search reference proteomes.

query required string
size optional number
taxonomy_search requires: query

NCBI taxonomy search.

query required string
size optional number
keyword requires: keyword_id

Keyword info.

keyword_id required string
feature_summary requires: accession

Feature annotation summary.

accession required string

AlphaFold

live

AlphaFold DB — predicted 3-D protein structures for ~214M sequences. Keyless.

BioStructures 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-alphafold": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/alphafold/mcp"
      ]
    }
  }
}
prediction requires: qualifier

Full prediction record.

qualifier required string
summary requires: qualifier

Short summary.

qualifier required string
annotations requires: qualifier

Sequence-level annotations.

qualifier required string
type optional string
uniprot requires: uniprot_id

Same as prediction (by UniProt id).

uniprot_id required string

RCSB PDB

live

RCSB Protein Data Bank — experimental macromolecular structures. Keyless.

BioStructures 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-rcsb-pdb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/rcsb-pdb/mcp"
      ]
    }
  }
}
search requires: query

PDB text search.

query required string
return_type optional string
limit optional number
structure requires: pdb_id

Full entry record.

pdb_id required string
polymer_entity requires: pdb_id, entity_id

Polymer entity (chain).

pdb_id required string
entity_id required string
ligand requires: pdb_id, ligand_id

Ligand record.

pdb_id required string
ligand_id required string
assembly requires: pdb_id

Biological assembly.

pdb_id required string
assembly_id optional string
summary requires: pdb_id

Short summary.

pdb_id required string

ChEMBL

live

ChEMBL — EBI drug discovery DB (molecules, targets, mechanisms, indications). Keyless.

BioDrugs 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-chembl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/chembl/mcp"
      ]
    }
  }
}
search requires: query

Search molecules/targets/assays/docs.

query required string
type optional string
limit optional number
molecule requires: chembl_id

Molecule record.

chembl_id required string
target requires: chembl_id

Target record.

chembl_id required string
mechanism requires: chembl_id

Mechanism of action.

chembl_id required string
activities

Activity records.

molecule_chembl_id optional string
target_chembl_id optional string
limit optional number
drug_indications

Drug indications.

molecule_chembl_id optional string
mesh_id optional string
limit optional number

Reactome

live

Reactome — open biological pathway database. Keyless.

BioPathways 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-reactome": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/reactome/mcp"
      ]
    }
  }
}
search requires: query

Cross-DB search.

query required string
types optional string
cluster optional boolean
pathway requires: id

Pathway record.

id required string
participants requires: id

Pathway participants.

id required string
pathways_for_entity requires: entity_id

Pathways containing an entity (by resource + id).

resource optional string
entity_id required string
species optional string
orthologous_events requires: id, species

Orthologous events in another species.

id required string
species required string

ORCID

live

ORCID public researcher records — works, employment, education. Keyless for public data.

ResearchPeople 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-orcid": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/orcid/mcp"
      ]
    }
  }
}
record requires: orcid_id

Full public record.

orcid_id required string
works requires: orcid_id

Works (publications).

orcid_id required string
work requires: orcid_id, put_code

Single work by put-code.

orcid_id required string
put_code required string
employment requires: orcid_id

Employment summary.

orcid_id required string
education requires: orcid_id

Education summary.

orcid_id required string
search requires: query

Expanded search.

query required string
rows optional number
start optional number

ROR

live

Research Organization Registry — canonical IDs and metadata for research orgs. Keyless.

ResearchIdentifiers 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ror": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ror/mcp"
      ]
    }
  }
}
search requires: query

Search organizations.

query required string
type optional string
country optional string
page optional number
get requires: ror_id

Full ROR record.

ror_id required string
affiliation requires: text

Fuzzy affiliation-string match.

text required string

INSPIRE-HEP high-energy physics literature database. Keyless.

ResearchPhysics 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-inspire-hep": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/inspire-hep/mcp"
      ]
    }
  }
}
search requires: query

Literature search.

query required string
sort optional string
size optional number
page optional number
fields optional string
literature requires: record_id

Paper by record id.

record_id required number
authors_search requires: query

Author search.

query required string
size optional number
author requires: record_id

Author record.

record_id required number
institutions_search requires: query

Institution search.

query required string
size optional number
conferences_search requires: query

Conference search.

query required string
size optional number

HAL

live

HAL — French national open research archive (Hyper Articles en Ligne). Keyless Solr-style API.

ResearchOpenAccess 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hal-fr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hal-fr/mcp"
      ]
    }
  }
}
search requires: query

Solr-style search.

query required string
fl optional string
fq optional string
rows optional number
start optional number
sort optional string
get requires: hal_id

Document by HAL id.

hal_id required string
author requires: query

Author lookup.

query required string
rows optional number
structure requires: query

Lab/department lookup.

query required string
rows optional number

EBI OLS

live

EBI Ontology Lookup Service — ~250 biomedical ontologies (GO, EFO, MONDO, CL, ChEBI, …). Keyless.

BioOntology 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ebi-ols": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ebi-ols/mcp"
      ]
    }
  }
}
list_ontologies

List loaded ontologies.

size optional number
page optional number
get_ontology requires: id

Ontology metadata.

id required string
search requires: query

Full-text search across ontologies.

query required string
ontology optional string
type optional string
exact optional boolean
rows optional number
get_term requires: ontology

Term by iri / short_form / obo_id.

ontology required string
iri optional string
short_form optional string
obo_id optional string
term_ancestors requires: ontology, iri

Transitive ancestors.

ontology required string
iri required string
term_children requires: ontology, iri

Direct children.

ontology required string
iri required string

Open Targets disease/target/drug knowledge graph (GraphQL). Keyless.

BioDrug Discovery 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opentargets": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opentargets/mcp"
      ]
    }
  }
}
target requires: ensembl_id

Target profile by Ensembl id.

ensembl_id required string
disease requires: efo_id

Disease profile by EFO id.

efo_id required string
drug requires: chembl_id

Drug profile by ChEMBL id.

chembl_id required string
search requires: query

Platform search.

query required string
entity optional string
size optional number
target_associations requires: ensembl_id

Top diseases for a target.

ensembl_id required string
size optional number
disease_associations requires: efo_id

Top targets for a disease.

efo_id required string
size optional number
target_known_drugs requires: ensembl_id

Clinically tested drugs for a target.

ensembl_id required string
size optional number

Australia open-data catalogue (CKAN). Keyless.

OpenDataGovernment 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datagov-au": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datagov-au/mcp"
      ]
    }
  }
}
search requires: query

Package search.

query required string
fq optional string
rows optional number
start optional number
sort optional string
package requires: id

Single package by id/name.

id required string
organizations

List orgs.

limit optional number
groups

List themes.

limit optional number
tags

List/search tags.

query optional string
limit optional number
resource requires: id

Resource by id.

id required string

France data.gouv.fr open-data catalogue. Keyless read.

OpenDataGovernment 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datagouv-fr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datagouv-fr/mcp"
      ]
    }
  }
}
search_datasets

Dataset search.

query optional string
organization optional string
tag optional string
page optional number
page_size optional number
dataset requires: id_or_slug

Dataset by id/slug.

id_or_slug required string
resources requires: dataset_id_or_slug

Resources for a dataset.

dataset_id_or_slug required string
search_organizations

Org search.

query optional string
page optional number
page_size optional number
organization requires: id_or_slug

Org by id/slug.

id_or_slug required string
reuses_search

Search reuses.

query optional string
page optional number
page_size optional number

IETF RFCs + Internet-Drafts + working groups + people. Keyless.

StandardsInternet 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ietf-datatracker": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ietf-datatracker/mcp"
      ]
    }
  }
}
rfc requires: number

RFC by number.

number required number
document requires: name

Document by name.

name required string
documents_search

Search documents.

states optional string
type optional string
name__contains optional string
limit optional number
offset optional number
wg requires: acronym

WG by acronym.

acronym required string
wgs_search

List WGs.

limit optional number
offset optional number
person requires: id

Person by id.

id required number

Repology

live

Repology — cross-distro package version aggregator. Keyless.

DeveloperPackages 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-repology": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/repology/mcp"
      ]
    }
  }
}
project requires: name

All packages for a project.

name required string
problems requires: project

Maintenance problems for a project.

project required string
repositories

List indexed repos.

maintainer requires: maintainer

Maintainer summary.

maintainer required string
projects_search

Paginate over projects.

start_name optional string
end_name optional string
search optional string
maintainer optional string
category optional string
in_repo optional string
not_in_repo optional string
count optional number

Tatoeba

live

Tatoeba multilingual sentence corpus (~13M sentences, 400+ languages). Keyless.

LanguageTranslation 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tatoeba": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tatoeba/mcp"
      ]
    }
  }
}
search requires: query

Search sentences.

query required string
from optional string
to optional string
page optional number
limit optional number
sentence requires: id

Single sentence by id.

id required number
translations requires: id

Translations of a sentence.

id required number
languages

Supported languages.


AFL fixture, results, ladder, crowd-sourced tips. Keyless.

SportsAFL 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-squiggle": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/squiggle/mcp"
      ]
    }
  }
}
teams

Team list.

year optional number
games

Fixture + results.

year optional number
round optional number
complete optional boolean
standings

Ladder.

year optional number
round optional number
sources

Tipping sources.

tips

Tips per game per source.

year optional number
round optional number
source optional number
ladder

Projected ladder.

year optional number
round optional number
source optional number

Blockchair

live

Blockchair multi-chain block explorer (BTC, ETH, LTC, DOGE, XMR, …). Keyless free tier.

CryptoBlockchain 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-blockchair": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/blockchair/mcp"
      ]
    }
  }
}
stats requires: chain

Chain-wide stats.

chain required string
block requires: chain, hash_or_height

Block by hash/height.

chain required string
hash_or_height required string
transaction requires: chain, txid

Tx by txid.

chain required string
txid required string
address requires: chain, address

Address dashboard.

chain required string
address required string
node requires: chain

Node software stats.

chain required string

Kitsu

live

Kitsu anime + manga catalogue (JSON:API). Keyless.

AnimeManga 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-kitsu": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/kitsu/mcp"
      ]
    }
  }
}
search_anime requires: query

Search anime.

query required string
limit optional number
search_manga requires: query

Search manga.

query required string
limit optional number
anime requires: id

Anime by id.

id required string
manga requires: id

Manga by id.

id required string
top_anime

Top anime.

by optional string
limit optional number
top_manga

Top manga.

by optional string
limit optional number
categories

List categories.

limit optional number

Global taxonomic index of known species (~2.2M accepted names). Keyless.

BioTaxonomy 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-catalogueoflife": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/catalogueoflife/mcp"
      ]
    }
  }
}
search requires: query

Name-usage search.

query required string
dataset optional string
limit optional number
offset optional number
rank optional string
status optional string
name_match requires: scientific_name

Exact scientific-name match.

scientific_name required string
authorship optional string
dataset optional string
usage requires: id

Name-usage by id.

id required string
dataset optional string
taxon requires: id

Taxon by id.

id required string
dataset optional string
classification requires: id

Classification chain.

id required string
dataset optional string
vernacular requires: id

Vernacular (common) names.

id required string
dataset optional string
synonyms requires: id

Synonyms.

id required string
dataset optional string
children requires: id

Direct child taxa.

id required string
dataset optional string
limit optional number

gnomAD

live

Broad Institute gnomAD — genome aggregation, population allele frequencies, variant annotations (GraphQL). Keyless.

BioGenomics 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gnomad": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gnomad/mcp"
      ]
    }
  }
}
variant requires: variant_id

Variant by id or rsid.

variant_id required string
dataset optional string
gene requires: gene_symbol_or_id

Gene + variants.

gene_symbol_or_id required string
dataset optional string
region requires: chrom, start, stop

Variants in a region.

chrom required string
start required number
stop required number
dataset optional string
transcript requires: transcript_id

Transcript + variants.

transcript_id required string
dataset optional string
search requires: query

Gene/variant autocomplete.

query required string

STRING-DB

live

STRING — protein-protein interaction networks across ~12k organisms. Keyless.

BioNetworks 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-string-db": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/string-db/mcp"
      ]
    }
  }
}
resolve requires: identifiers

Map identifiers → STRING ids.

identifiers required array
species optional number
limit optional number
interactions requires: identifiers

Interaction partners.

identifiers required array
species optional number
required_score optional number
limit optional number
network_type optional string
network requires: identifiers

Network for a gene set.

identifiers required array
species optional number
required_score optional number
network_type optional string
enrichment requires: identifiers

Functional enrichment.

identifiers required array
species optional number
homology requires: identifiers

Homology mappings.

identifiers required array
species optional number

Ensembl

live

Ensembl REST — vertebrate genomes, gene annotations, sequences, comparative genomics, variation. Keyless.

BioGenomes 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ensembl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ensembl/mcp"
      ]
    }
  }
}
lookup requires: id

By stable id.

id required string
expand optional boolean
lookup_symbol requires: species, symbol

Gene by symbol within a species.

species required string
symbol required string
expand optional boolean
xrefs requires: species, symbol

Cross-references for a gene symbol.

species required string
symbol required string
sequence requires: id

Sequence by stable id.

id required string
type optional string
homology requires: species, symbol_or_id

Homology mappings.

species required string
symbol_or_id required string
target_species optional string
variation requires: species, variant_id

Variation by name.

species required string
variant_id required string
vep requires: species, region, allele

Variant Effect Predictor.

species required string
region required string
allele required string

NCBI E-utilities — federated Entrez search/fetch across PubMed, Gene, Nucleotide, Protein, Taxonomy, ClinVar, dbSNP, OMIM, etc. Keyless.

BioReference 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ncbi-eutils": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ncbi-eutils/mcp"
      ]
    }
  }
}
einfo

Database info.

db optional string
esearch requires: db, term

Search → uid list.

db required string
term required string
retmax optional number
retstart optional number
sort optional string
esummary requires: db, ids

Summary records by uid.

db required string
ids required array
retstart optional number
efetch requires: db, ids

Full records.

db required string
ids required array
rettype optional string
retmode optional string
elink requires: dbfrom, dbto, ids

Links across DBs.

dbfrom required string
dbto required string
ids required array
linkname optional string
egquery requires: term

Global query.

term required string

Monarch biomedical knowledge graph — diseases, phenotypes, genes, variants. Keyless.

BioKnowledge Graph 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-monarch-initiative": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/monarch-initiative/mcp"
      ]
    }
  }
}
search requires: query

Node search.

query required string
category optional string
limit optional number
offset optional number
entity requires: id

Node by curie.

id required string
associations requires: entity_id

Associations involving an entity.

entity_id required string
category optional string
predicate optional string
direction optional string
limit optional number
phenotype_to_gene requires: phenotype_id

Genes for a phenotype.

phenotype_id required string
gene_to_disease requires: gene_id

Diseases for a gene.

gene_id required string

OpenCitations COCI — open-license citation index. Keyless.

ResearchCitations 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opencitations": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opencitations/mcp"
      ]
    }
  }
}
references requires: doi

References for a DOI.

doi required string
citations requires: doi

Citations of a DOI.

doi required string
citation_count requires: doi

Incoming-citation count.

doi required string
references_count requires: doi

Outgoing-reference count.

doi required string
metadata requires: dois

Bibliographic metadata for DOIs.

dois required array
citation requires: oci

Citation by OCI.

oci required string

PLOS

live

PLOS journals Solr search — all PLOS open-access content. Keyless.

ResearchOpenAccess 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-plos": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/plos/mcp"
      ]
    }
  }
}
search requires: query

Solr search.

query required string
rows optional number
start optional number
sort optional string
fl optional string
article requires: doi

Article by DOI.

doi required string
search_authored_by requires: name

Articles by author.

name required string
rows optional number
recent

Most recent publications.

rows optional number

Official EU open-data hub — ~1.6M datasets from EU institutions + 27 member states. Keyless.

OpenDataGovernment 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-europa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-europa/mcp"
      ]
    }
  }
}
search requires: query

Dataset search.

query required string
fq optional string
rows optional number
start optional number
sort optional string
package requires: id

Single dataset.

id required string
organizations

List orgs.

limit optional number
groups

List themes.

limit optional number
tags

List/search tags.

query optional string
limit optional number

NOAA Tides

live

NOAA Tides & Currents — observations, predictions, datums, stations. Keyless.

WeatherOceanography 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-noaa-tides": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/noaa-tides/mcp"
      ]
    }
  }
}
stations

List stations.

type optional string
format optional string
station_metadata requires: station

Station metadata.

station required string
predictions requires: station, begin_date, end_date

Tide predictions.

station required string
begin_date required string
end_date required string
datum optional string
interval optional string
units optional string
time_zone optional string
water_level requires: station, begin_date, end_date

Observed water level.

station required string
begin_date required string
end_date required string
datum optional string
units optional string
time_zone optional string
currents requires: station, begin_date, end_date

Observed currents.

station required string
begin_date required string
end_date required string
bin optional number
units optional string
time_zone optional string
met_obs requires: station, product, begin_date, end_date

Meteorological observations.

station required string
product required string
begin_date required string
end_date required string
units optional string
time_zone optional string
datums requires: station

Vertical datums.

station required string

FMI

live

Finnish Meteorological Institute open data — forecast, observations, warnings. Keyless.

Weather 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fmi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fmi/mcp"
      ]
    }
  }
}
forecast requires: place

HARMONIE forecast.

place required string
parameters optional string
timestep optional number
latest_observations requires: place

Latest observation values.

place required string
parameters optional string
recent_observations requires: place

Last N hours of observations.

place required string
parameters optional string
hours optional number
warnings

Active warnings (Finland).


GDACS

live

Global Disaster Alert & Coordination System (EQ/TC/FL/VO/DR/WF). Keyless.

HazardsGeo 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gdacs": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gdacs/mcp"
      ]
    }
  }
}
events

List events.

event_type optional string
alert_level optional string
from optional string
to optional string
country_iso3 optional string
event requires: event_type, event_id

Single event.

event_type required string
event_id required string
episode_id optional string
geojson

Alerts as GeoJSON.

event_type optional string
alert_level optional string
rss

Raw RSS feed.


OSV.dev

live

Google's open-source vulnerability database. Keyless.

SecurityOSS 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-osv-dev": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/osv-dev/mcp"
      ]
    }
  }
}
vulnerabilities

Query vulns for a package/commit.

package_name optional string
ecosystem optional string
version optional string
commit optional string
query_batch requires: queries

Batch query (≤1000).

queries required array
get requires: vuln_id

Full vuln record.

vuln_id required string

deps.dev

live

Google's package metadata + dependency graph API. Keyless.

DeveloperPackages 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-deps-dev": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/deps-dev/mcp"
      ]
    }
  }
}
project requires: project_type, project_key

Project metadata.

project_type required string
project_key required string
package requires: system_, name

Package metadata.

system_ required string
name required string
version requires: system_, name, version

Single version.

system_ required string
name required string
version required string
dependencies requires: system_, name, version

Resolved dep graph.

system_ required string
name required string
version required string
query requires: query

Query packages/versions.

query required object

Fan-built API of Studio Ghibli films, people, locations, species, vehicles. Keyless.

MediaFandom 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-studio-ghibli": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/studio-ghibli/mcp"
      ]
    }
  }
}
films

List films.

limit optional number
film requires: id

Single film.

id required string
people

List people.

limit optional number
person requires: id

Single person.

id required string
locations

List locations.

limit optional number
location requires: id

Single location.

id required string
species

List species.

limit optional number
species_one requires: id

Single species.

id required string
vehicles

List vehicles.

limit optional number
vehicle requires: id

Single vehicle.

id required string

A Song of Ice and Fire (GoT) books, characters, houses. Keyless.

MediaFandom 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-anapioficeandfire": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/anapioficeandfire/mcp"
      ]
    }
  }
}
books

List/search books.

name optional string
fromReleaseDate optional string
toReleaseDate optional string
page optional number
pageSize optional number
book requires: id

Single book.

id required number
characters

List/search characters.

name optional string
culture optional string
born optional string
died optional string
isAlive optional boolean
gender optional string
page optional number
pageSize optional number
character requires: id

Single character.

id required number
houses

List/search houses.

name optional string
region optional string
words optional string
hasTitles optional boolean
hasSeats optional boolean
hasDiedOut optional boolean
hasAncestralWeapons optional boolean
page optional number
pageSize optional number
house requires: id

Single house.

id required number

BioThings gene annotation joining NCBI/Ensembl/UniProt/KEGG/OMIM. Keyless.

BioGenes 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mygene-info": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mygene-info/mcp"
      ]
    }
  }
}
query requires: query

Full-text gene query.

query required string
species optional string
fields optional string
size optional number
sort optional string
gene requires: gene_id

Annotations for a gene id.

gene_id required string
fields optional string
species optional string
query_many requires: ids

Batch lookup.

ids required array
scopes optional string
species optional string
fields optional string
metadata

Release / source metadata.

taxonomy requires: species

Species taxonomy info.

species required string

NOAA SWPC

live

NOAA Space Weather Prediction Center — solar wind, Kp, aurora, X-ray flux, alerts. Keyless.

SpaceWeather 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-noaa-swpc": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/noaa-swpc/mcp"
      ]
    }
  }
}
alerts

Current alerts.

solar_wind

Solar wind (plasma + mag).

window optional string
kp_index

Planetary K index.

window optional string
aurora_forecast

Aurora forecast.

goes_xray

GOES X-ray flux.

window optional string
boulder_kp

Boulder K-index real-time.

forecast_text

3-day forecast text.


API-Football MCP — comprehensive soccer/football data

DataSports 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-api-football": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/api-football/mcp"
      ]
    }
  }
}
fixtures

Get match fixtures (upcoming + recent) by league, team, or date. Use league=1 for FIFA World Cup, league=39 for EPL, league=140 for La Liga. Returns kickoff, teams, score (if played), venue, status.

standings

Current standings table for a league. Returns rank, team, points, goal difference, form. Use league=1 for World Cup.

team_search

Look up a team by name + country to get its team_id for use in other tools.

league_search

Look up a league/tournament/competition by name to get its league_id.

predictions

API-Football model predictions for a fixture — win/draw/loss probabilities, predicted score, advice. Useful as a prior on outright outcomes.

h2h

Head-to-head record between two teams. Returns last N matches with scores.


Vizier

live

VizieR MCP — CDS astronomical catalogue access.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-vizier": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/vizier/mcp"
      ]
    }
  }
}
catalogs

Search VizieR catalogue metadata.

query_catalog

Query rows of a single catalogue (e.g. "I/345/gaia2").

cone_search

Cone search around (RA, Dec).

object

Query by object name (resolved via SIMBAD/NED).


Simbad

live

SIMBAD MCP — CDS astronomical object database.

Data 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-simbad": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/simbad/mcp"
      ]
    }
  }
}
object

Resolve and fetch the basic record for an object identifier (e.g. "M31", "HD 209458").

script

Run a SIMBAD sim-script. See https://simbad.cds.unistra.fr/simbad/sim-fscript.

tap

ADQL TAP query against the SIMBAD database (sync). Returns JSON by default.

cone_search

Objects within a radius of (RA, Dec) decimal degrees.


JPL Horizons MCP.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-horizons-nasa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/horizons-nasa/mcp"
      ]
    }
  }
}
lookup

Resolve an object name → SPK id.

ephemeris

Generate an ephemeris (default observer table).

observers

Convenience: ephemeris with table_type=OBSERVER.

vectors

Convenience: ephemeris with table_type=VECTORS.


NASA Exoplanet Archive MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-exoplanet-archive": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/exoplanet-archive/mcp"
      ]
    }
  }
}
tap

ADQL TAP query.

planets

Quick planet search against the `ps` (planetary systems) table.

composite

Composite planet parameter table `pscomppars`.

kepler_candidates

Kepler Object of Interest (KOI) candidate table.

microlensing

Microlensing event table.


Gtex

live

GTEx MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gtex": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gtex/mcp"
      ]
    }
  }
}
gene

Gene metadata by Gencode id or symbol.

median_expression

Median expression across tissues for a gene (TPM).

top_expressed_genes

Top expressed genes for a tissue.

single_tissue_eqtls

Significant single-tissue eQTLs for a gene.

tissues

List of tissues.


Harvard Dataverse MCP.

Data 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dataverse-harvard": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dataverse-harvard/mcp"
      ]
    }
  }
}
search

Search datasets / files / dataverses.

dataset

Dataset metadata by DOI persistent id (e.g. "doi:10.7910/DVN/...").

dataset_files

List files in a dataset.

dataverse

Dataverse (collection) metadata by alias or id.


Openfigi

live

OpenFIGI MCP — financial-instrument symbology.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openfigi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openfigi/mcp"
      ]
    }
  }
}
map

Map a batch of instrument-id queries → FIGIs.

search

Text search across instruments.

filter

Filter search by idType + value (subset of /search).


open.canada.ca MCP — Canada CKAN catalogue.

Data 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opendata-canada": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opendata-canada/mcp"
      ]
    }
  }
}
search

CKAN package_search.

package

Dataset by id/slug.

organizations

List orgs.

groups

List themes.


GOV.UK Content + Search APIs.

GovernmentData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gov-uk-content": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gov-uk-content/mcp"
      ]
    }
  }
}
content

Content for a gov.uk page by base_path.

search

GOV.UK full search.

organisations

List organisations.

taxons

Taxonomy tree node.

search_autocomplete

Autocomplete suggestions.


Scb Se

live

Statistics Sweden PxWeb MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-scb-se": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/scb-se/mcp"
      ]
    }
  }
}
subjects

Navigate the subject tree.

table_meta

Table definition (dimensions, valid values).

query_table

Pull data from a table. body is a PxWeb query object.


Librivox

live

LibriVox MCP.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-librivox": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/librivox/mcp"
      ]
    }
  }
}
audiobooks

Search audiobooks.

audiobook

Single audiobook by id.

authors

Search authors.

tracks

List tracks for an audiobook.


Wikimedia Commons MCP — Action API for files.

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-commons-wikimedia": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/commons-wikimedia/mcp"
      ]
    }
  }
}
search

Full-text search across Commons.

file_info

File metadata (size, mime, license, upload date, thumbnail urls).

file_revisions

File revision history.

category_members

Items in a Commons category.

random_image

Random image (optionally from a category).


Public Suffix List MCP.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-public-suffix-list": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/public-suffix-list/mcp"
      ]
    }
  }
}
parse

Split a domain into (subdomain, registrable_domain, public_suffix).

public_suffix

Just the public suffix.

registrable_domain

Domain + nearest suffix (the "site").

list_version

Last refresh + rule count.


Iso Codes

live

iso-codes MCP — lookups against the Debian iso-codes project JSON.

Developer 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-iso-codes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/iso-codes/mcp"
      ]
    }
  }
}
country

Country by name / alpha-2 / alpha-3 / numeric.

subdivisions

ISO 3166-2 subdivisions of a country.

language

Language by name / 2-letter / 3-letter code.

currency

Currency by name / code / numeric.

script

Script (ISO 15924).

list

List all of one kind.


Ons Uk

live

ONS UK MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ons-uk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ons-uk/mcp"
      ]
    }
  }
}
datasets

List publicly available datasets.

dataset

Single dataset metadata.

editions

Editions of a dataset.

latest_observations

Latest observation data file metadata.

series

Time series by ONS uri.


Cisa Kev

live

CISA KEV MCP.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cisa-kev": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cisa-kev/mcp"
      ]
    }
  }
}
catalog

Full KEV catalog (metadata + entries).

entry

Single KEV entry by CVE id.

vendors

Distinct vendors with entries.

recent

Entries added in the last N days.


Mitre Cwe

live

MITRE CWE API MCP.

Data 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mitre-cwe": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mitre-cwe/mcp"
      ]
    }
  }
}
weakness

CWE weakness record.

category

CWE category record.

view

CWE view record (e.g. "1003" = Weaknesses for Simplified Mapping).

children

Children of a weakness/category/view.

parents

Parent relationships.

descendants

Full descendant subtree.

relationship

Relationship details between two CWEs.


MITRE ATT&CK MCP — STIX bundles from github.com/mitre/cti.

Developer 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mitre-attck": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mitre-attck/mcp"
      ]
    }
  }
}
technique

Technique by ATT&CK id.

tactic

Tactic by id or short name.

group

Threat group (e.g. G0007).

software

Software/malware (e.g. S0002).

mitigation

Mitigation.

search

Substring search across the bundle.

domains

List loaded STIX bundles.


Data Ny

live

data.ny.gov Socrata MCP.

GovernmentData 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-ny": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-ny/mcp"
      ]
    }
  }
}
datasets

Search dataset catalogue.

query

SoQL query on a single resource.

metadata

Resource metadata.

column_data

Distinct values in a column.


data.cityofchicago.org Socrata MCP.

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-cityofchicago": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-cityofchicago/mcp"
      ]
    }
  }
}
datasets

Search dataset catalogue.

query

SoQL query.

metadata

Resource metadata.


European Parliament Open Data MCP.

Data 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-eu-parliament": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/eu-parliament/mcp"
      ]
    }
  }
}
meps

List MEPs (current term by default).

mep

Single MEP by id.

plenary_documents

Plenary documents.

session_calendar

Session calendar.


Homebrew formulae.brew.sh MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-homebrew-formulae": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/homebrew-formulae/mcp"
      ]
    }
  }
}
formula

Formula by name.

cask

Cask by name.

analytics_install

Install counts. Pass formula to scope, or omit for top list.

analytics_cask_install

Cask install counts.

recent_formulae

Recently-added formulae.


Tldr Pages

live

tldr-pages MCP — fetched from the canonical github repo.

Developer 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tldr-pages": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tldr-pages/mcp"
      ]
    }
  }
}
page

Render tldr page for a command.

commands

List commands.

platforms

List supported platforms.

search

Substring search across page titles.


Rfc Editor

live

RFC Editor MCP.

Utility 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-rfc-editor": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/rfc-editor/mcp"
      ]
    }
  }
}
rfc_text

Full RFC plain text.

rfc_metadata

RFC index entry metadata.

errata

Known errata.

bcp

BCP → RFC list.

std

STD → RFC list.

search

Substring search in title/abstract.


Bioregistry MCP.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bioregistry": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bioregistry/mcp"
      ]
    }
  }
}
prefix

Prefix metadata.

search

Substring search over prefixes.

resolve

Resolve a CURIE (prefix:id) to a provider URL.

prefixes

Paginate over all prefixes.


Open Topo Data MCP.

Data 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opentopodata": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opentopodata/mcp"
      ]
    }
  }
}
elevation

Elevation at points. Up to 100 locations per request.

datasets

List available DEM datasets.


Open Food Facts MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openfoodfacts": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openfoodfacts/mcp"
      ]
    }
  }
}
product

Product by barcode.

search

Full-text search.

category

Products by category.

brand

Products by brand.

country

Products from a country.


Dwds

live

DWDS MCP — German Digital Dictionary.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dwds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dwds/mcp"
      ]
    }
  }
}
snippet

JSON dictionary snippet for a German word.

lemma

Lemma resolution (form → base form).

corpus_concordance

Search the DWDS corpus.

kwic

Keyword-in-context view.


Lemmy

live

Lemmy MCP — public reads on any Lemmy instance.

Utility 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-lemmy": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/lemmy/mcp"
      ]
    }
  }
}
posts

List posts.

post

Single post by id.

comments

Comments.

communities

List communities.

community

Community metadata.

site

Instance metadata.

search

Full search.


Cdec Ca

live

CDEC (California Data Exchange Center) MCP.

Data 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cdec-ca": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cdec-ca/mcp"
      ]
    }
  }
}
station_info

Station metadata.

daily_data

Daily data for (station, sensor).

hourly_data

Hourly data.

event_data

Event-based irregular data.

latest

Latest value.

reservoirs

Reservoir storage snapshots.


Noaa Spc

live

NOAA SPC MCP.

Weather 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-noaa-spc": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/noaa-spc/mcp"
      ]
    }
  }
}
convective_outlook

Day-N convective outlook GeoJSON.

mesoscale_discussions

Recent mesoscale discussions list (as text page).

storm_reports

Preliminary storm reports CSV.

watches_active

Currently-active watches summary text.


Mast Nasa

live

MAST MCP — Space Telescopes archive.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mast-nasa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mast-nasa/mcp"
      ]
    }
  }
}
cone_search

Search MAST around (RA, Dec).

mission_search

Mission-scoped search with arbitrary criteria.

caom

Generic CAOM (Common Archive Observation Model) query.

lookup_name

Resolve target name → coords.


Pypi Stats

live

PyPI Stats MCP.

Developer 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pypi-stats": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pypi-stats/mcp"
      ]
    }
  }
}
recent

Total downloads in recent period.

overall

Daily downloads timeseries.

python_major

By Python major version.

python_minor

By Python minor version.

system

By OS/system.


Zenodo

live

Zenodo MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-zenodo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/zenodo/mcp"
      ]
    }
  }
}
search

Record search.

record

Single record by Zenodo id.

record_files

Files in a record.

communities

List/search communities.

community_records

Records in a community.


Figshare

live

Figshare MCP.

Utility 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-figshare": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/figshare/mcp"
      ]
    }
  }
}
articles

Search articles.

article

Single article.

article_files

Files in an article.

collections

Search collections.

collection

Single collection.

institutions

List institutions.


Goproxy

live

Go Module Proxy MCP.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-goproxy": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/goproxy/mcp"
      ]
    }
  }
}
module

Most recent version + metadata.

versions

List available versions.

version_info

Version metadata.

go_mod

go.mod content.


Deno Land

live

deno.land/x registry MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-deno-land": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/deno-land/mcp"
      ]
    }
  }
}
module

Module metadata + latest version.

versions

List versions.

version

Single version metadata.

search

Name + description search.

dependencies

Best-effort dependency list from version metadata.


Rdap

live

RDAP MCP — Registration Data Access Protocol via IANA bootstrap.

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-rdap": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/rdap/mcp"
      ]
    }
  }
}
domain

Domain registration record.

ip

IP/netblock allocation record.

asn

ASN allocation record.

entity

Entity by handle. Pass base RDAP url to skip bootstrap.

nameserver

Nameserver record.


datos.gob.es MCP.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datos-gob-es": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datos-gob-es/mcp"
      ]
    }
  }
}
datasets

Search datasets.

dataset

Single dataset.

publishers

List publishers.

themes

List themes.


Hpo Api

live

HPO API MCP.

Data 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hpo-api": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hpo-api/mcp"
      ]
    }
  }
}
term

HPO term by id.

search

Text search.

term_children

Direct children.

term_parents

Direct parents.

term_descendants

Full descendant subtree.

gene_diseases

Diseases for a gene id (NCBIGene).

disease_phenotypes

HPO terms for a disease (OMIM/ORPHA/MONDO).


Opendatasoft (generic portal) MCP.

Data 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opendatasoft": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opendatasoft/mcp"
      ]
    }
  }
}
datasets

Search datasets.

dataset

Dataset metadata.

records

Records in a dataset.

facets

Facet distinct values.

instance_info

Instance metadata.


Lens Org

live

Lens.org MCP — patent + scholarly platform.

Utility 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-lens-org": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/lens-org/mcp"
      ]
    }
  }
}
patents_search

Patent search.

scholarly_search

Scholarly works search.

patent

Single patent by lens_id.

scholarly

Single scholarly work.


balldontlie.io MCP.

Utility 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-balldontlie": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/balldontlie/mcp"
      ]
    }
  }
}
teams

All teams.

team

Single team.

players

Players.

player

Single player.

games

Games.

game

Single game.

season_averages

Season averages.

stats

Stats.


Last Fm

live

Last.fm MCP.

Utility 9 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-last-fm": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/last-fm/mcp"
      ]
    }
  }
}
artist_info

Artist bio + similar + tags.

artist_top_tracks

Most-played tracks for an artist.

artist_similar

Similar artists.

album_info

Album metadata.

track_info

Track metadata.

track_search

Track search.

user_top_tracks

User top tracks.

tag_top_artists

Top artists in a tag.

chart_top_artists

Global top artists.


Opencages

live

OpenCage MCP.

Utility 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opencages": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opencages/mcp"
      ]
    }
  }
}
geocode

Forward geocode.

reverse

Reverse geocode.


OpenTopography MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opentopography": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opentopography/mcp"
      ]
    }
  }
}
point_elevation

Elevation at a point (returns a 1-pixel raster URL — use opentopodata for direct point values).

dem

DEM raster for a bounding box (returns URL to GeoTIFF).

datasets

List available DEM datasets.


Giantbomb

live

Giant Bomb MCP.

Utility 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-giantbomb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/giantbomb/mcp"
      ]
    }
  }
}
search

Search across all resources.

game

Single game by guid or id.

games

List/filter games.

character

Single character.

companies

List/filter companies.

releases

List/filter releases.

platforms

List/filter platforms.


Urlscan Io

live

urlscan.io MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-urlscan-io": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/urlscan-io/mcp"
      ]
    }
  }
}
search

Search past scans (keyless).

result

Full result by scan uuid (keyless).

submit

Submit a new URL for scanning (requires key).

domain

Search by domain.

ip

Search by IP.


Mojang

live

Mojang/Minecraft MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mojang": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mojang/mcp"
      ]
    }
  }
}
username_to_uuid

Current UUID for username.

username_to_uuid_at

UUID at a given epoch second.

profile

Profile (name + textures).

name_history

Historical name changes.

blocked_servers

List blocked-server SHA1s.


Cheapshark

live

CheapShark MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cheapshark": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cheapshark/mcp"
      ]
    }
  }
}
deals

Search deals across stores.

deal

Single deal detail.

stores

List supported stores.

games

Game lookup.

game

Game details.


Codewars

live

Codewars MCP.

Developer 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-codewars": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/codewars/mcp"
      ]
    }
  }
}
user

User profile.

user_completed

Completed challenges.

user_authored

Authored kata.

kata

Single kata.


Leetcode

live

LeetCode MCP.

Developer 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-leetcode": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/leetcode/mcp"
      ]
    }
  }
}
user_profile

Public profile.

user_solved

Solved counts by difficulty.

user_recent_submissions

Recent accepted submissions.

daily_question

Today's daily coding challenge.

problem

Problem detail by slug.

problemset_stats

Total problems by difficulty.


Foodish

live

Foodish MCP.

Utility 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-foodish": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/foodish/mcp"
      ]
    }
  }
}
random

Random food image URL.

random_by_category

Random image for category.


NIST Randomness Beacon MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nist-beacon": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nist-beacon/mcp"
      ]
    }
  }
}
last_pulse

Most recent pulse.

pulse_at

Pulse at UTC time (epoch ms).

pulse_by_chain_pulse

Pulse by chain + pulse index.

latest_in_chain

Latest pulse in chain.

chain_info

Chain metadata.


Roblox

live

Roblox MCP.

Utility 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-roblox": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/roblox/mcp"
      ]
    }
  }
}
user_by_username

Resolve username to user id.

user

User profile.

user_friends

Friends list.

user_followers_count

Follower count.

user_followings_count

Following count.

user_badges

Badges.

user_games

Created games.

user_presence

Presence for up to 100 user ids.

group

Group detail.

game

Game (universe) detail.


Wynncraft

live

Wynncraft MCP.

Utility 9 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wynncraft": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wynncraft/mcp"
      ]
    }
  }
}
player

Player stats.

player_characters

Character list.

guild

Guild detail.

guild_list

List all guilds.

online_players

Currently online players by server.

leaderboard

Leaderboard.

item_database

Full item database.

item_search

Item search by name.

news

Official news feed.


Guild Wars 2 MCP.

Utility 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-guild-wars-2": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/guild-wars-2/mcp"
      ]
    }
  }
}
worlds

World list.

items

Item lookup.

achievements

Achievements.

professions

Professions.

currencies

Currencies.

build

Current build id.

quaggans

Quaggan images.

wvw_matches

Current WvW matches.

commerce_prices

Trading-post prices.

commerce_listings

Trading-post listings.


Pirate Weather MCP.

Weather 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pirate-weather": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pirate-weather/mcp"
      ]
    }
  }
}
forecast

Full forecast at point.

forecast_grid

GFS/ECMWF grid forecast.


Polygon Io

live

Polygon.io MCP.

Utility 12 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-polygon-io": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/polygon-io/mcp"
      ]
    }
  }
}
tickers

Ticker search.

ticker_details

Ticker reference detail.

aggregates

OHLC bars.

daily_open_close

Daily O/H/L/C + after-hours.

previous_close

Previous close.

grouped_daily

All-ticker daily.

news

News.

splits

Splits.

dividends

Dividends.

market_holidays

Upcoming holidays.

market_status

Current market status.

exchanges

Exchanges.


Comicvine

live

Comic Vine MCP.

Entertainment 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-comicvine": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/comicvine/mcp"
      ]
    }
  }
}
search

Multi-resource search.

characters

Character list.

character

Character detail.

issues

Issue list.

issue

Issue detail.

volumes

Volume list.

volume

Volume detail.

people

Creators.

person

Creator detail.

publishers

Publishers.


Vimeo

live

Vimeo MCP.

Utility 9 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-vimeo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/vimeo/mcp"
      ]
    }
  }
}
video

Single video.

videos_search

Search videos.

user

User profile.

user_videos

User videos.

channel

Channel.

channel_videos

Channel videos.

categories

List categories.

category

Single category.

category_videos

Videos in a category.


Tenor

live

Tenor v2 MCP.

Utility 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tenor": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tenor/mcp"
      ]
    }
  }
}
search

GIF/sticker search.

featured

Featured GIFs.

categories

Categories.

search_suggestions

Suggestions.

autocomplete

Autocomplete.

trending_terms

Trending search terms.

posts

Posts by id (comma-sep).


Steam

live

Steam Web API MCP.

Data 14 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-steam": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/steam/mcp"
      ]
    }
  }
}
resolve_vanity_url

Vanity URL → SteamID64.

player_summary

Profile summary.

player_summaries

Bulk profile.

friend_list

Friends.

owned_games

Owned games.

recently_played

Recent games.

player_achievements

Achievements for a game.

player_stats

User stats for a game.

player_level

Steam level.

player_bans

VAC/community bans.

app_news

App news feed.

app_details

Store page detail (Steam Store API).

app_list

Full app list (large).

current_player_count

Current concurrent players.


Riot Games

live

Riot Games API MCP.

DataEntertainment 11 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-riot-games": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/riot-games/mcp"
      ]
    }
  }
}
account_by_riot_id

Riot ID → account/puuid.

account_by_puuid

Account by puuid.

summoner_by_puuid

Summoner detail.

match_ids_by_puuid

Recent match ids.

match

Match detail.

match_timeline

Match timeline.

league_entries

Ranked entries.

champion_rotations

Free champion rotation.

champion_mastery

Champion mastery.

summoner_top_mastery

Top N champion mastery.

status

Platform status.


Bungie

live

Bungie.net Platform API MCP.

Data 13 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bungie": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bungie/mcp"
      ]
    }
  }
}
manifest

Destiny 2 manifest metadata.

search_destiny_player

Find Destiny player by display name with code.

search_destiny_players_by_global_name

Search Bungie names.

profile

Profile + characters + inventory.

character

Character detail.

linked_profiles

Cross-platform profiles.

clan

Clan/group detail.

clan_members

Clan members.

user_by_id

Bungie.net user.

equipped_loadout

Equipped loadout (components=205).

historical_stats

Historical stats.

historical_stats_for_account

Account-wide stats.

entity_definition

Single definition by type + hash.


Wordnik

live

Wordnik MCP.

Utility 12 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wordnik": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wordnik/mcp"
      ]
    }
  }
}
definitions

Definitions.

examples

Usage examples.

top_example

Single top example.

related

Related words.

phrases

Bigram phrases.

pronunciations

Pronunciations.

hyphenation

Hyphenation.

frequency

Usage frequency.

word_of_the_day

WotD.

random_word

Random word.

random_words

N random words.

search

Word search.


CryptoCompare MCP.

Utility 15 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cryptocompare": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cryptocompare/mcp"
      ]
    }
  }
}
price

Current price (one coin → many fiat).

price_multi

Current price (many → many).

price_full

Full snapshot.

histo_minute

Minute OHLC.

histo_hour

Hourly OHLC.

histo_day

Daily OHLC.

top_pairs

Top trading pairs.

top_volume_full

Top by volume.

top_market_cap

Top by market cap.

news

News feed.

news_categories

News categories.

news_feeds

News feeds.

social_stats

Social stats.

all_coins

Full coin list.

all_exchanges

Exchange list.


Watchmode

live

Watchmode MCP.

Utility 11 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-watchmode": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/watchmode/mcp"
      ]
    }
  }
}
title_search

Search titles.

title_detail

Title detail.

title_sources

Streaming sources.

title_seasons

Seasons.

releases

Recent/upcoming releases.

list_titles

Title catalog.

sources

Streaming sources/services.

networks

Networks.

genres

Genres.

regions

Regions.

languages

Languages.


Kraken

live

Kraken MCP (public endpoints).

Utility 9 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-kraken": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/kraken/mcp"
      ]
    }
  }
}
server_time

Server time.

system_status

Exchange status.

assets

Asset info.

asset_pairs

Pair info.

ticker

Current ticker.

ohlc

OHLC candles.

depth

Orderbook.

trades

Recent trades.

spread

Recent spread.


Bitstamp

live

Bitstamp MCP (public endpoints).

Utility 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bitstamp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bitstamp/mcp"
      ]
    }
  }
}
ticker

Current ticker.

ticker_hour

Last-hour ticker.

order_book

Orderbook.

transactions

Recent transactions.

eur_usd

EUR/USD rate.

trading_pairs

Supported pairs.

ohlc

OHLC candles.


Gemini Exchange MCP (public endpoints).

Utility 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gemini-crypto": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gemini-crypto/mcp"
      ]
    }
  }
}
symbols

List trading pairs.

symbol_details

Pair metadata.

ticker

v1 ticker.

ticker_v2

v2 ticker (24h stats).

candles

Candles.

book

Orderbook.

trades

Trade history.

price_feed

Price feed.

network

Network for a token.

gas_fees

Gas fee estimate.


Ipify

live

ipify MCP.

Utility 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ipify": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ipify/mcp"
      ]
    }
  }
}
ipv4

Caller's IPv4 (gateway egress IP).

ipv6

Caller's IPv6 (gateway egress IP, IPv4 fallback).


Timeapi Io

live

TimeAPI.io MCP.

Data 9 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-timeapi-io": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/timeapi-io/mcp"
      ]
    }
  }
}
current_time

Current time in a zone.

current_time_coordinate

Current time at lat/lon.

current_time_ip

Current time at IP.

current_iso_zoned_date_time

ISO zoned datetime.

current_zone_info

Zone info.

convert_time_zone

Convert datetime between zones.

day_of_the_week

Day of week for a date.

list_zones

Supported zones.

translate_to_iso

Parse custom-format date to ISO.


Httpbin

live

httpbin MCP.

Utility 16 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-httpbin": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/httpbin/mcp"
      ]
    }
  }
}
get

Echo a GET.

post

Echo a POST.

headers

Echo caller's headers.

ip

Caller IP (gateway egress).

user_agent

Caller User-Agent.

status

Return given HTTP status.

delay

Sleep N seconds.

uuid

Random UUID.

base64_encode

Base64 encode.

base64_decode

Base64 decode.

json_anything

Sample JSON.

xml_anything

Sample XML.

html_anything

Sample HTML.

robots_txt

Sample robots.txt.

image

Sample image metadata (returns URL).

cookies

Caller cookies.


Devdocs Io

live

DevDocs.io MCP.

Developer 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-devdocs-io": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/devdocs-io/mcp"
      ]
    }
  }
}
docs

Full docs index.

search_docs

Filter docs index by substring.

index

Index of entries inside a doc.

search_index

Substring-search entries inside a doc.

db

Content database for a doc (large).

entry

Single entry HTML.

types

List categories inside a doc.


Rss2json

live

rss2json MCP.

Utility 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-rss2json": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/rss2json/mcp"
      ]
    }
  }
}
feed

Fetch RSS/Atom feed as JSON.


NIH Clinical Tables Search Service MCP.

HealthScience 0 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-clinicaltables": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/clinicaltables/mcp"
      ]
    }
  }
}

Dummyjson

live

DummyJSON MCP.

Utility 13 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dummyjson": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dummyjson/mcp"
      ]
    }
  }
}
products

Paged products.

product

Single product.

product_search

Search products.

products_categories

Category list.

users

Paged users.

user

Single user.

posts

Paged posts.

post

Single post.

comments

Paged comments.

recipes

Paged recipes.

recipe

Single recipe.

quotes

Paged quotes.

todos

Paged todos.


Setlist Fm

live

setlist.fm MCP.

Utility 12 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-setlist-fm": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/setlist-fm/mcp"
      ]
    }
  }
}
artist

Artist by MBID.

artist_search

Search artists.

artist_setlists

Artist's setlists.

venue

Venue detail.

venue_search

Search venues.

venue_setlists

Setlists at a venue.

setlist

Single setlist.

setlist_search

Search setlists.

user

User profile.

user_attended

User's attended shows.

cities

City search.

countries

Country list.


Tmdb

live

TMDB v3 MCP.

Utility 19 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tmdb": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tmdb/mcp"
      ]
    }
  }
}
configuration

Image config + change keys.

search_movie

Movie search.

search_tv

TV search.

search_person

Person search.

search_multi

Multi-type search.

movie

Movie detail.

movie_credits

Cast/crew.

movie_videos

Trailers/clips.

movie_recommendations

Recommended movies.

tv

TV show detail.

tv_season

Season detail.

tv_episode

Episode detail.

person

Person detail.

person_combined_credits

Film + TV credits.

trending

Trending.

discover_movie

Discover movies (passes through query params).

discover_tv

Discover TV.

genres_movie

Movie genres.

genres_tv

TV genres.


Rebrickable MCP.

Utility 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-rebrickable": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/rebrickable/mcp"
      ]
    }
  }
}
sets

Search sets.

set

Single set.

set_parts

Parts in a set.

set_minifigs

Minifigs in a set.

parts

Search parts.

part

Single part.

themes

List themes.

colors

List colors.


Wmata

live

WMATA MCP.

Utility 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wmata": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wmata/mcp"
      ]
    }
  }
}
rail_lines

List rail lines.

rail_stations

List stations.

rail_station_info

Station info.

rail_predictions

Next-train predictions.

rail_incidents

Current rail incidents.

bus_routes

List bus routes.

bus_route_details

Route details.

bus_stops

Nearby bus stops.

bus_predictions

Bus arrival predictions.

bus_incidents

Bus incidents.


Listen Notes MCP.

Utility 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-listen-notes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/listen-notes/mcp"
      ]
    }
  }
}
search

Search podcasts/episodes/curated/people.

podcast

Single podcast.

episode

Single episode.

genres

List genres.

best_podcasts

Top podcasts.

recommendations_for_podcast

Similar podcasts.

recommendations_for_episode

Similar episodes.


Openrouteservice MCP.

Utility 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openrouteservice": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openrouteservice/mcp"
      ]
    }
  }
}
directions

Routing.

matrix

Distance/duration matrix.

isochrones

Drive/walk isochrones.

snap

Snap to nearest road.

elevation_line

Elevation along a line.

elevation_point

Elevation at a point.

geocode_search

Pelias geocoder.


Newsapi

live

NewsAPI.org MCP.

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-newsapi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/newsapi/mcp"
      ]
    }
  }
}
top_headlines

Current top headlines.

everything

Archive search.

sources

News sources.


The Guardian Open Platform MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-the-guardian": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/the-guardian/mcp"
      ]
    }
  }
}
search

Content search.

item

Single article by id.

sections

List sections.

tags

List tags.

editions

Editions.


Deepl

live

DeepL MCP.

Utility 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-deepl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/deepl/mcp"
      ]
    }
  }
}
translate

Translate text (string or string[]).

usage

Current month's usage + limits.

source_languages

Supported source languages.

target_languages

Supported target languages.

glossary_language_pairs

Supported glossary language pairs.


Spoonacular MCP.

Utility 18 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-spoonacular": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/spoonacular/mcp"
      ]
    }
  }
}
recipe_search

Complex recipe search.

recipe_information

Recipe detail.

recipe_random

Random recipes.

recipe_summary

Short summary.

recipe_similar

Similar recipes.

recipe_nutrition

Nutrition breakdown.

recipe_ingredients

Ingredient list.

recipe_taste

Taste widget.

recipe_price_breakdown

Cost breakdown.

ingredient_search

Ingredient search.

ingredient_information

Ingredient detail.

product_search

Branded product search.

product_information

Product detail.

meal_plan_generate

Generated meal plan.

meal_plan_week

7-day plan.

wine_pairing

Wine pairing.

wine_recommendation

Wine recommendation.

convert_amount

Unit conversion.


Mapbox

live

Mapbox MCP.

Utility 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mapbox": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mapbox/mcp"
      ]
    }
  }
}
geocode_forward

Address → coords.

geocode_reverse

Coords → address.

directions

Routing.

directions_matrix

Distance/time matrix.

isochrone

Isochrones.

map_matching

Snap GPS trace to roads.

tilequery

Tile feature query.

static_image_url

Static Image URL.


Twelvedata

live

Twelve Data MCP.

Data 16 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-twelvedata": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/twelvedata/mcp"
      ]
    }
  }
}
time_series

OHLC time series.

quote

Quote snapshot.

price

Latest price.

eod

End-of-day quote.

exchange_rate

Forex rate.

currency_conversion

FX conversion.

stocks

Stock symbols.

forex_pairs

Forex pairs.

cryptocurrencies

Crypto symbols.

etfs

ETF symbols.

indices

Index symbols.

earnings

Earnings calendar (per symbol).

earnings_calendar

Broad earnings calendar.

dividends

Dividends.

splits

Splits.

profile

Company profile.


Clash Royale MCP.

Utility 15 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-clash-royale": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/clash-royale/mcp"
      ]
    }
  }
}
player

Player profile.

player_battles

Recent battles.

player_upcoming_chests

Upcoming chest cycle.

clan

Clan profile.

clan_members

Clan members.

clan_war_log

War log.

clan_current_war

Current war.

clan_search

Clan search.

tournament

Tournament info.

tournament_search

Search tournaments.

cards

Card list.

locations

Locations.

location

Location detail.

rankings_clans

Top clans for location.

rankings_players

Top players for location.


Brawl Stars MCP.

Utility 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-brawl-stars": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/brawl-stars/mcp"
      ]
    }
  }
}
player

Player profile.

player_battles

Recent battles.

club

Club profile.

club_members

Club members.

brawlers

Brawler list.

brawler

Single brawler.

events_rotation

Current event rotation.

rankings_players

Country player rankings.

rankings_clubs

Country club rankings.

rankings_brawlers

Country brawler rankings.