Ygoprodeck

live

YGOPRODeck: search, look up, and browse Yu-Gi-Oh! TCG card data including stats, archetypes, sets, and prices.

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

Search Yu-Gi-Oh! trading card game (TCG) cards by name (fuzzy), card type, attribute, monster race/type, archetype, or level. Returns matching cards with names, types, descriptions, ATK/DEF, attribute

get_card

Look up a single Yu-Gi-Oh! trading card game (TCG) card by its exact name. Returns full card details including type, description, ATK/DEF, level, attribute, archetype, banlist status, printed sets wit

random_card

Get a random Yu-Gi-Oh! trading card game (TCG) card with full details including type, description, ATK/DEF, attribute, archetype, sets, and card prices.


Tcgdex

live

TCGdex MCP — multi-language open trading card game database (Pokémon TCG and more).

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

Search Pokémon TCG (and other trading card games) cards by name in the TCGdex card database. Returns brief matches (id, localId, name, image thumbnail). Use get_card with an id for full card details.

get_card

Look up a single Pokémon TCG (or other trading card game) card by its TCGdex id (e.g. "swsh3-136"). Returns full card details: category, rarity, hp, types, stage, set, illustrator, attacks, abilities,

list_sets

List all Pokémon TCG (and other trading card game) sets/expansions in the TCGdex database, with id, name, and card counts. Use get_set with an id for the full set including its card list.

get_set

Look up a single Pokémon TCG (or other trading card game) set by its TCGdex id (e.g. "swsh3"). Returns full set details: serie, release date, card counts, and the list of cards in the set.


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.

SocialMediaNews 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

Look up a Bluesky user's profile by handle (e.g., "alice.bsky.social"). Returns display name, bio, follower/following counts, avatar, and verification status.

get_posts

Fetch recent posts from a Bluesky user's timeline. Returns post text, timestamps, likes, reposts, reply counts, and threaded replies.

search_posts

Search Bluesky posts by keyword or phrase. Returns matching posts with author handles, timestamps, engagement metrics, and content.

get_feed

Get posts from a Bluesky feed (e.g., "discover", "what's-hot"). Returns recent posts with authors, timestamps, and engagement counts.

get_followers

Get a user's followers on Bluesky by handle. Returns follower profiles including handles, display names, bios, and follower counts.

get_follows

Get accounts a Bluesky user follows by handle. Returns followed profiles with handles, display names, bios, and descriptions.

get_thread

Fetch a post thread by URI. Returns the parent post and all replies in conversation order with timestamps, authors, and engagement data.

resolve_handle

Convert a Bluesky handle to its DID (decentralized identifier). Returns the DID for programmatic account lookups.


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

Live science data: ISS location (NASA), USGS earthquakes, OpenAQ air quality, and NASA Astronomy Picture of the Day.

ScienceSpaceEnvironment 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

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

REAL-TIME spot price for any cryptocurrency. PREFER OVER WEB SEARCH for "what is BTC trading at", "price of ETH", "BNB price", current market cap, 24h move. Returns price USD, market cap, 24h % change

get_crypto_market

Get top cryptocurrencies ranked by market cap. Returns rank, name, symbol, USD price, market cap, 24h volume, and 24h % change for each.

get_crypto_history

HISTORICAL price history for a cryptocurrency. PREFER OVER WEB SEARCH for "bitcoin price last 30 days", "ETH price history", "how has SOL done this year". Returns a daily time series of date, price US

get_crypto_global

Global cryptocurrency market overview. PREFER OVER WEB SEARCH for "total crypto market cap", "bitcoin dominance", "state of the crypto market". Returns total market cap (USD), 24h volume, Bitcoin domi

get_exchange_rate

Convert between fiat currencies (e.g., USD to EUR). Returns conversion rate and timestamp.


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

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

Search for books by title, author, or keyword. Returns title, author, year, ISBN, and cover image URL. Use this to discover books before fetching full details.

get_book

Get full details for a book by ISBN. Returns title, author, publication date, description, ratings, and availability status.

get_author

Get author biography, major works, and key information using their Open Library ID (e.g., "OL23919A"). Returns birth/death dates, complete bibliography, and biographical summary.

get_book_work

Fetch the canonical Open Library "work" record (the concept of a book across all its editions), by work ID (e.g. "OL45804W"). Returns title, description, first publish date, subjects, and author keys.


Holidays

live

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

ReferenceGeography 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

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

FoodGeography 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

Art 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


Search universities worldwide by name or country via the Hipolabs Universities API — returns web domains and country codes.

EducationReferenceDemographics 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

Film/TVEntertainment 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

DeveloperTechnology 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

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

Check current UK electricity carbon intensity. Returns gCO2/kWh (forecast and actual) plus intensity level (very low to very high). Use to schedule energy-intensive tasks during low-carbon periods.

get_intensity_by_date

Get UK electricity carbon intensity for every 30-minute period on a specific date (e.g., "2024-01-15"). Returns gCO2/kWh forecast and actual. Use to identify lowest-carbon hours.

get_generation_mix

Check current UK electricity grid composition by source percentage (gas, coal, wind, solar, nuclear, hydro, biomass, imports). Use to understand real-time grid energy mix.

get_regional_intensity

Carbon intensity (forecast gCO2/kWh + index band) and generation mix for a specific Great Britain region. Pass "postcode" (UK outcode — first half of a postcode, e.g. "RG10") or "regionid" (1–17, e.g.

get_intensity_factors

Carbon intensity factors (gCO2/kWh) per fuel type used in the headline figures — e.g. Coal 937, Gas (Combined Cycle) 394, Nuclear 0, Wind 0, Solar 0.


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

FinanceGovernment 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

TechnologySecurity 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

TechnologyDeveloper 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

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

Search npm for packages by keyword. Returns package names, descriptions, latest versions, publish dates, and publishers. Use when discovering libraries for a task.

get_package

Get full details for a specific package: version, description, dependencies, homepage, repository, and license. Use after search_packages to evaluate a candidate package.

get_downloads

Check download counts for a package over a time period (e.g., 'last-week', 'last-month', 'last-year'). Returns total downloads to assess package popularity and adoption.

list_versions

List published versions of an npm package with publish dates, dist-tags (latest/next/beta), and deprecation notices — answers "what versions of <pkg> exist", "when was <pkg> last published", "is the l

get_version_info

Get metadata for a SPECIFIC version (or dist-tag) of an npm package: dependencies, dev/peer dependencies, engines, license, tarball + integrity hash + unpacked size, and any deprecation notice. Use fo


Search Nobel Prize laureates and prizes by year and category

ReferenceScience 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

FinanceEconomics 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

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

Search for questions on StackOverflow or any StackExchange site. Returns title, body, score, answer count, tags, and link.

get_answers

Get answers for a specific StackExchange question by ID. Returns answer body, score, and whether it is accepted.

stack_get_user

Look up a StackExchange user by numeric ID. Returns display name, reputation, badges (gold/silver/bronze counts), location, website, account age, last access, and per-site activity counts (questions/a

list_questions_by_tag

Browse questions by TAG, sorted by votes or recency — answers "top questions tagged <tag>", "trending <tag> questions this week/month", "most-voted <tag> questions". Returns title, score, answer count


World Bank

live

World Bank Open Data: GDP, population, and 10,000+ development indicators for countries over time.

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

Get basic information about a country: full name, region, income level, capital city, and coordinates. Use ISO 3166-1 alpha-2 or alpha-3 country codes (e.g., "US", "GBR", "IN").

get_indicator

Get time-series values for a World Bank indicator for a specific country. Common indicators: NY.GDP.MKTP.CD (GDP), SP.POP.TOTL (population), EN.ATM.CO2E.KT (CO2 emissions), SE.ADT.LITR.ZS (literacy ra

get_population

Get total population over time for a country. Shortcut for get_indicator with SP.POP.TOTL.

get_gdp

Get GDP (current USD) over time for a country. Shortcut for get_indicator with NY.GDP.MKTP.CD.

compare_countries

Compare a World Bank indicator across MULTIPLE countries in one call, returned ranked high→low. PREFER for "GDP per capita: US vs China vs Germany", "rank the G7 by CO2 emissions", "compare population


Countries

live

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

GeographyReference 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 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wikipedia": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wikipedia/mcp"
      ]
    }
  }
}
search_wikipedia

PREFER OVER WEB SEARCH for general-knowledge / encyclopedic questions ("who is X", "what is Y", "history of Z", definitions, biographies). Returns matching Wikipedia article titles, snippets, page IDs

get_article_summary

AUTHORITATIVE summary of a Wikipedia article by exact title — typically faster + cheaper than search_wikipedia + get_article_sections + scrape. Returns the article's lead paragraph (the editorial over

get_article_sections

Section outline of a Wikipedia article by title — the table-of-contents. Returns all headings + hierarchy (H2, H3, etc.) without the prose. Use when the article is long (history, science topics, biogr

get_random_articles

Discover random Wikipedia articles for serendipitous learning. Returns title, introduction text, and page ID.

get_article_extract

Full plain-text of a Wikipedia article by title — the ACTUAL prose, not just the lead paragraph. PREFER OVER get_article_summary when you need the whole article or a specific section to answer in dept


GitHub

live

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

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

Search GitHub repositories by keyword. Returns repo name, description, star count, forks, primary language, and URL. Use when exploring projects or finding code implementations.

get_repo

Get full details for a specific repository. Returns description, stars, forks, language, topics, license, and more. Specify owner and repo name (e.g., owner="torvalds", repo="linux").

list_repo_issues

List issues for a repository to track bugs and features. Returns issue title, number, state (open/closed), labels, and creation date. Specify owner and repo name (e.g., owner="torvalds", repo="linux")

get_user

Get a GitHub user's public profile info. Returns name, bio, company, location, public repo count, followers, and social links. Specify username (e.g., username="torvalds").

get_file_contents

Read a file from a PUBLIC GitHub repository (or list a directory) by path. PREFER OVER WEB SEARCH for "show me the README / package.json / <file> of <repo>", "read <path> from <owner/repo>", inspectin

search_code

Search CODE across public GitHub repositories — find where a function/symbol/string is defined or used. PREFER OVER WEB SEARCH for "find code that does X", "which repos use <API>", "show me an example

get_releases

Get the latest release and recent release history for a repository — the canonical way to answer "what is the latest version of <project>", "when was <repo> last released", "what changed in the newest

list_commits

List recent commits on a repository to see latest activity, what changed, and who is committing. PREFER OVER WEB SEARCH for "what are the recent commits to <repo>", "when was <owner/repo> last updated


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

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

Full-text search Hacker News via Algolia. Pass query plus optional tags filter (story, comment, ask_hn, show_hn; default: story). Returns title, URL, score, author, comment count, and timestamp.

get_top_stories

Fetch the current live top-ranked Hacker News stories from the Firebase API. Returns up to `count` stories (default 10) with title, URL, score, author, comment count, and Unix timestamp.

get_stories

Fetch Hacker News stories of a given TYPE: top (default), new (newest), best, ask (Ask HN), show (Show HN), or job (jobs/hiring). PREFER for "newest HN stories", "top Ask HN posts", "Show HN", "HN job

get_item

Fetch a Hacker News story or comment by ID (e.g., "42153809"). Returns full text, score, author, timestamp, and child replies.

get_hn_comments

Fetch the discussion (top-level comments, actual text) on a Hacker News story by its item ID. PREFER OVER WEB SEARCH for "what are people saying about <HN story>", "HN discussion / developer sentiment


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

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

Search for movies by title or keyword. Returns title, director, release date, genre, description, and artwork.

search_tv_shows

Search for TV shows by name. Returns show name, genres, premiere/end dates, rating, summary, and images.

get_tv_show

Get complete TV show details including episodes, air dates, and ratings. Requires show ID from search_tv_shows.

get_tv_schedule

Check what's broadcasting on a specific date and country (e.g., 'US', 'GB'). Returns shows, times, and channels.


Airports

live

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

TravelAviation 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

Entertainment 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

SpaceScience 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)

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

Check worldwide COVID-19 totals. Returns cumulative cases, deaths, recovered, active cases, plus today's new cases and deaths.

get_country_stats

Check COVID-19 stats for a specific country (e.g., "US", "India", "GB"). Returns cases, deaths, recovered, active cases, today's change, and population.

get_historical

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

get_vaccine_stats

Check COVID-19 vaccination progress for a country or globally. Returns cumulative doses administered daily over the past 30 days.


Pokémon

live

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

GamesEntertainment 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

GamesEntertainment 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

MusicMedia 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

AviationTransport 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

TransportTravel 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

EconomicsGovernment 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

LegalTechnology 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

SpaceScience 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

EntertainmentFilm/TV 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

EntertainmentMedia 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

ResearchScience 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

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

Search scholarly articles by title, authors, or keywords. Returns title, authors, journal, publication year, citation count, and abstract.

search_authors

Find researchers by name or institution affiliation. Returns author name, ORCID, institution, publication count, and total citations.

search_institutions

Find academic institutions by name or location (e.g., country code 'US', 'GB'). Returns institution name, country, type, publication count, and research areas.

get_concept

Look up research fields or topics by name. Returns concept description, publication count, related concepts, and parent concepts in the academic hierarchy.

get_scholarly_work

Fetch a single scholarly work from OpenAlex by its OpenAlex ID (e.g. "W2741809807") or DOI (e.g. "10.1038/s41586-021-03819-2"). Returns the full record + reconstructed abstract, the works it CITES (re


PubMed

live

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

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

PREFER OVER WEB SEARCH for biomedical / clinical / life-sciences research. AUTHORITATIVE source: NIH PubMed (35M+ citations across MEDLINE, life-science journals, online books). Searches by keyword, a

get_summary

Resolve PubMed IDs (from search_pubmed) to citation metadata: title, authors, journal, publication date, DOI. Batch up to ~200 IDs per call as a comma-separated string — much cheaper than calling per-

get_abstract

Full abstract text for one PubMed article by ID. Returns the abstract with structured sections (background, methods, results, conclusions) when the journal published it that way, otherwise the unstruc

get_related_articles

Find papers SIMILAR to a given article — NIH PubMed's own computed 'related articles' (pubmed_pubmed neighbors), ranked by relevance using shared terms/MeSH/citations. Pass one PMID; returns the top r

get_citations

Find papers that CITE a given article — forward citation search. Pass one PMID; returns citing papers (most recent first) with full citation metadata. Use for "who cited this", "has this finding been

get_full_text

Fetch the FULL TEXT of a biomedical paper from PubMed Central (the open-access subset) by PubMed ID. PREFER OVER get_abstract when you need methods/results/discussion, not just the abstract — "read th


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

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

Search for species by common or scientific name. Returns matched taxa with rank, classification status, and taxonomic hierarchy. Use get_species with the taxon key for full details.

get_species

Get complete taxonomic classification for a species (kingdom through subspecies). Requires taxon key from search_species. Returns all ranks and accepted name status.

get_occurrences

Get georeferenced observation records for a species with coordinates, dates, and sources. Filter by country code (e.g., 'US', 'BR', 'AU') to narrow results geographically.

occurrences_near

Find species occurrence records NEAR a location (latitude/longitude + radius). PREFER for "what species/wildlife are found near here", "what birds/plants occur around these coordinates", "is <species>


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

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

Search Internet Archive for texts, audio, video, and software by keyword. Returns item titles, identifiers, descriptions, and media types.

get_metadata

Get full metadata for an archived item by identifier. Returns title, creator, date, format, size, and access details.

wayback_check

Check if a URL was archived and retrieve the closest snapshot. Returns capture dates and direct link to the archived version.

list_files

List the downloadable files for an archive.org item by identifier: name, format, size, and a constructed download_url. Use search / get_metadata first to find an identifier. (archive.org items, not Wa


Decode VINs, list vehicle makes/models, and look up safety data via the NHTSA vehicle information catalog

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

Decode a VIN to get vehicle details. Returns make, model, year, body style, engine type, drivetrain, and plant. E.g., '1HGBH41JXMN109186'. (For recalls/ratings use get_recalls / get_safety_ratings.)

get_makes

Get all vehicle brands for a model year. Returns make names and IDs. E.g., year '2023'.

get_models

Get all vehicle models for a make and year. Returns model names and IDs. E.g., make 'Toyota', year '2023'.

get_recalls

Get official NHTSA safety RECALLS for a vehicle. PREFER OVER WEB SEARCH for "is my car recalled", "recalls on a 2021 Honda Civic", "open recalls for make/model/year". Returns each recall: component, s

get_complaints

Get owner-filed NHTSA complaints for a vehicle — real-world problems drivers reported (vs official recalls). Use for "common problems with a 2020 Ford Explorer", "what are owners complaining about". R

get_safety_ratings

Get NHTSA 5-Star Safety Ratings (NCAP crash-test results) for a vehicle — overall, frontal, side, and rollover star ratings. Use for "crash test rating for a 2021 Honda Civic", "how safe is X". Pass m


Compute derivatives, integrals, simplifications, and factorizations of algebraic expressions via the Newton API

ScienceReference 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

ReferenceMedia 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

SpaceNews 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

Technology 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

Technology 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

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

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

get_times_date

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


Chess.com

live

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

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

Get a Chess.com player's profile by username (e.g., 'hikaru'). Returns title, country, followers, join date, and last online time.

get_stats

Get a player's ratings and game records across daily, rapid, blitz, and bullet formats. Returns current/best ratings and win/loss/draw counts.

get_games

Retrieve a player's completed games for a specific month (format: YYYY/MM, e.g., '2024/01'). Returns game URLs, time controls, results, and ratings.

get_leaderboards

Check top-ranked Chess.com players by format (daily, rapid, blitz, bullet). Returns rankings with ratings and win percentages.


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).

BooksReference 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

Entertainment 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

Entertainment 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

EntertainmentMedia 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

FoodHealth 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

TransportTravelEurope 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

SpaceScience 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

Technology 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

TechnologyDeveloper 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

Reference 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

DeveloperTechnology 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

WeatherEnvironment 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

EnvironmentClimateWeather 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

GeographyEurope 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

GamesEntertainment 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

GamesDeveloper 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

Entertainment 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

Entertainment 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

BooksReference 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

Health 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

TechnologyDeveloper 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

SecurityDeveloper 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

Developer 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

TechnologyDeveloper 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

EnvironmentWeather 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

ClimateEnvironment 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

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

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

featured_article

Get Wikipedia's featured article for a specific date.

most_read

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

picture_of_day

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


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

EntertainmentReference 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

Reference 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

DeveloperEntertainment 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

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

Get geolocation and network info for any IP address (e.g., "8.8.8.8"). Returns city, region, country, coordinates, org, postal code, timezone.

get_my_ip

Get your current IP address with geolocation data. Returns city, region, country, coordinates, org, postal code, timezone.


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

FinanceEconomics 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

Developer 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

EntertainmentReference 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

EntertainmentMedia 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


Crates.io

live

Search and browse Rust crates from the crates.io registry

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

Search crates.io for Rust packages by keyword. Returns crate name, description, downloads, latest version, and repo URL.

get_crate

Get full metadata for a specific crate (e.g., 'serde'). Returns description, downloads, latest version, repo, homepage, and categories.

get_versions

List all published versions for a crate in reverse chronological order. Returns version number, download count, and publish date.

get_crate_dependencies

List the dependencies of a specific crate version — what <crate> itself depends on. Returns each dependency with its version requirement, kind (normal/build/dev), optional flag, enabled features, and

get_crate_reverse_deps

List crates that DEPEND ON a given crate (reverse dependencies), most-downloaded first — answers "what uses <crate>", "how widely adopted is <crate>", "who depends on <crate>". Returns the total depen


Docker Hub

live

Search public Docker Hub images and browse tags and repository metadata

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

Search Docker Hub for container images by keyword. Returns repository name, description, pull count, star count, and official status. Use when finding images for deployment.

get_image

Get detailed metadata for a Docker Hub repository: description, pull count, stars, last updated date, and official status. Use before pulling an image to verify quality and currency.

get_tags

List available tags for a Docker image sorted by recency. Returns tag name, digest, size, and push date. Use to find and select specific versions to pull.

get_tag_details

Get full details for a SPECIFIC image tag, including every platform/architecture it supports (os/arch/variant), per-platform digests and sizes, the multi-arch manifest digest, and push date. PREFER fo


Search and explore public GitLab projects and issues without authentication

DeveloperTechnology 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

DeveloperNews 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

AI/MLResearch 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

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

get_scores

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

get_schedule

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

get_player

Get an NHL player's profile and current season stats by player ID. Returns bio, position, team, and season statistics.


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

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

Search US congressional bills by keyword. Returns bill type, number, title, status, sponsor, and introduction date. Use get_bill with the ID for full details.

get_bill

Get full details for a congressional bill by its ID. Returns text, sponsors, cosponsors, committee assignments, actions, and vote history.

get_members

Get current members of Congress with their name, party, state, district (for representatives), and contact information.

get_votes

Get recent congressional votes on bills, newest first. Returns question, result, chamber, vote counts (yes/no/abstain), date, and related bill.

get_recent_bills

List the most recent congressional bills — newest first by introduction date or by latest action. PREFER OVER search_bills (which ranks by keyword relevance, surfacing older bills) for "what bills wer


Reddit

live

Read public Reddit posts, search across subreddits, and fetch post comments

SocialNewsMedia 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

DeveloperNews 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

SocialMediaNews 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

EntertainmentMedia 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"

AniList

live

Search anime, get detailed series info, and browse trending titles via the AniList GraphQL API

EntertainmentFilm/TV 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

SpaceScience 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

Developer 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

Entertainment 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

Query, search, and manage Salesforce CRM records — accounts, contacts, opportunities — via SOQL and SOSL

SaaSProductivity 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.


Read, write, append, and create Google Sheets spreadsheets via OAuth — rows, ranges, and metadata.

SaaSProductivity 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

Query and browse HubSpot CRM contacts, companies, and deals via the HubSpot API.

SaaSProductivity 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

Search, retrieve, and browse Jira issues and projects using JQL via the Jira REST API.

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.


Read channel history, send messages, and list users and channels in a Slack workspace via OAuth.

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.


Search, retrieve, and query Notion pages and databases in a connected workspace via OAuth.

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.

SaaSProductivity 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.

GeographyTravel 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.

FinanceSaaS 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.

SaaSProductivity 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.

SaaSProductivity 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.

DeveloperSaaS 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

Read, search, send, and label Gmail messages in the authenticated Google account via OAuth.

SaaSProductivity 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


List, search, download, and create files in Google Drive via OAuth — supports Docs, Sheets, and binary files.

SaaSProductivity 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.


List, search, create, and retrieve Google Calendar events and calendars via OAuth.

SaaSProductivity 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

Query Google Ads campaigns, ad groups, and performance metrics (impressions, clicks, cost) via GAQL.

SaaSAI/ML 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.


Run reports and get realtime traffic metrics from Google Analytics 4 properties via the GA4 API.

SaaSData 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)

ProductivitySaaS 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)

ProductivitySaaS 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)

ProductivitySaaS 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)

ProductivitySaaS 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)

ProductivitySaaS 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)

DeveloperSaaS 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.

SaaSProductivity 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.

SaaSProductivity 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.

FinanceSaaS 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.

FinanceSaaS 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.

SaaSProductivity 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)

SaaSFinance 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.


Browse products, orders, and customers in a WooCommerce store via the WooCommerce REST API v3.

SaaSFinance 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

List, get, create, and query records across Airtable bases and tables via the Airtable REST API.

SaaSProductivity 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

Browse, search, download, and create files and folders in Dropbox via the Dropbox API v2.

SaaSProductivity 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

SaaSProductivity 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

SaaSProductivity 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

JobsSaaS 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

JobsSaaS 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 API — list ad accounts, campaigns, ad sets, and pull performance insights (impressions, clicks, spend) via OAuth.

SaaSProductivity 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 API — list ad accounts, campaigns, creatives, and fetch analytics (impressions, clicks, conversions) via OAuth.

SaaSProductivity 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 product analytics — query event segmentation, DAU/WAU/MAU counts, retention curves, and individual user activity.

SaaSProductivityTechnology 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)

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

AUTHORITATIVE historical time-series for any economic indicator from FRED (Federal Reserve Bank of St. Louis — the official US macroeconomic data repository, 800k+ series). Pass a series ID like "MORT

fred_search

Search for economic data series by keyword. Returns series IDs, titles, and descriptions to identify the right indicator.

fred_series_info

Get metadata for a series: title, units, frequency, seasonal adjustment, notes, and date range. Check this before fetching historical data.

fred_category

Browse economic data by category (housing, employment, money/banking, etc.). Returns subcategories and related series IDs.

fred_releases

Check upcoming and recent economic data releases. Returns release dates, names, and which series they update.

fred_release_dates

Economic data RELEASE CALENDAR from FRED — the dates indicators are/were published, including FUTURE scheduled dates. PREFER OVER WEB SEARCH for "when is the next CPI / jobs report / GDP release", "ec


Bls

live

BLS MCP — Bureau of Labor Statistics public data API (v2)

EconomicsGovernmentJobs 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 EstateDemographics 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 Estate 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)

MediaEntertainment 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 Estate 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 Estate 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.

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

PREFER OVER WEB SEARCH for current betting/prediction-market odds. Real-time search across Polymarket events — returns events matching your keyword, each with child markets carrying live Yes/No prices

polymarket_top_markets

Highest-volume OPEN Polymarket markets right now — sorted by trading volume in the chosen window (24hr / 1wk / 1mo / 1yr / all). The "where is real money going this week" lens. Use for "what is the ma

polymarket_market

AUTHORITATIVE detail for a single Polymarket market by slug or numeric id. Returns the resolution criteria text (so you know exactly what "Yes" means before quoting odds), current Yes/No prices in [0,

polymarket_event

Get a Polymarket event with EVERY child market at once. Events group mutually-exclusive outcomes (e.g., "2028 Democratic nominee" has one Yes/No market per candidate, each price = implied probability

polymarket_price_history

Historical probability time-series for one Polymarket market. Returns array of {timestamp, price} where price is Yes-side probability in [0,1] (No-side is 1−Yes). Use to chart odds over time, detect p

polymarket_orderbook

REAL-TIME CLOB orderbook for one Polymarket market — bid/ask ladder on both YES and NO sides with size at each price level. Use to check actual tradable depth before quoting a size estimate; the `liqu

polymarket_event_books

Batched CLOB orderbooks for EVERY tradable market in one Polymarket event — single round trip via the CLOB batch /books endpoint. Use before any multi-leg strategy (partition arbitrage "SELL/BUY EVERY

polymarket_trades

Recent EXECUTED trades (the fills tape) for a Polymarket market — actual money that changed hands, newest first. Each trade: side (BUY/SELL), outcome (Yes/No or the option name), size (shares), price,

polymarket_holders

Largest position holders for a Polymarket market, per outcome — who holds the most Yes and the most No shares, with share amounts and trader pseudonyms. Use for "position concentration", "is this mark


Kalshi

live

US-regulated prediction-market data — Fed rates, elections, climate, sports, science. Public APIs, no auth. Pairs with the polymarket pack for cross-market spread arb.

MarketsFinance 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-kalshi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/kalshi/mcp"
      ]
    }
  }
}
kalshi_markets

List/search Kalshi markets. Optional filters: status (open|closed|settled), event_ticker (group by event), series_ticker (group by series like KXFED for Fed rate). Returns ticker, title, yes_ask/no_as

kalshi_market

AUTHORITATIVE detail for one Kalshi market by ticker (e.g. "KXFED-26OCT-T3.50"). Returns the rules text (so you know exactly what the market settles on — critical before quoting odds), yes_ask + no_as

kalshi_events

List/browse Kalshi events (event = a question with one-or-more child markets, e.g. "Fed funds rate after Oct 2026 meeting?" with 11 markets, one per rate bucket). Filter by status (open / settled), se

kalshi_event

AUTHORITATIVE odds from Kalshi — the only CFTC-regulated US prediction-market exchange (US persons CAN legally trade here, unlike Polymarket). Returns one event with ALL its child markets nested: even

kalshi_series

List Kalshi series (a series groups related events over time — e.g. "KXFED" series has one event per FOMC meeting). Useful to find the canonical handle for recurring questions.

kalshi_orderbook

Current YES/NO orderbook (bids + asks with size, in cents) for a market ticker. Use to see live liquidity depth before judging whether an edge is tradable. Returns sorted price/quantity levels.

kalshi_trades

Recent executed trades for a market ticker. Returns most-recent N trades with price (cents), size, side, timestamp. Useful for sanity-checking what the market is actually paying vs the resting orderbo

kalshi_price_history

Historical price/probability time-series (candlesticks) for a Kalshi market — how the YES odds moved over time. Pass a market ticker (e.g. "KXFEDDECISION-28JAN-H26"). Returns OHLC candles: YES price (

kalshi_exchange_status

Exchange-level status: is the trading floor open, are deposits/withdrawals enabled, any scheduled maintenance. Cheap check before a batch script.

kalshi_macro

Friendly-name shortcut for the most-asked Kalshi macro series: "Fed" (FOMC rate buckets), "BTC" (Bitcoin price ranges), "ETH" (Ethereum), "CPI" (monthly inflation), "GDP" (quarterly growth), "SP500" (


AI Briefing — daily digest of AI model releases, new MCP servers, SDK updates, and industry news from HN, GitHub, and AI company blogs.

AI/MLTechnologyNews 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 — meta-pack chaining FRED, BLS, ATTOM, HUD, and Zillow for mortgage rates, property reports, affordability checks, and metro rental screening.

Real EstateEconomicsGovernment 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-housing-intel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/housing-intel/mcp"
      ]
    }
  }
}
case_shiller_metro_compare

Compare Case-Shiller home price indices across multiple US metros in one call (the 20-city composite). For each metro returns latest level, 3-month change, 12-month change, all-time peak, drawdown fro

housing_market_snapshot

Get national housing market overview: mortgage rates, housing starts, Case-Shiller index, unemployment, construction employment. Optionally add metro-level prices (e.g., "Denver", "Atlanta"). For comp

housing_property_report

Analyze a property by address and zip code. Returns valuation estimate, sales history, tax assessment, and detailed characteristics.

housing_rental_analysis

Evaluate rental investment potential by address and zip code. Returns estimated rent, fair market rents, and CPI rent trends.

housing_affordability_check

Check housing affordability in a market. Returns mortgage rate, median price, monthly payment, required income, and HUD limits. Optionally specify metro (e.g., "Denver").

housing_employment_outlook

Assess labor market health for housing demand. Returns employment, construction jobs, residential building employment, unemployment rate, and job openings.

housing_signal_scan

Scan 45+ housing indicators for anomalies and reversals. Flags unusual moves across rates, starts, sales, prices, wages, unemployment, and rent.

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

housing_market_screen

Rank US metros for rental cash flow in ONE call — the "which markets are best for a landlord" view. Returns metros sorted by gross rent yield = (Zillow median monthly rent × 12) ÷ Zillow typical home

housing_metro_demand

Demand + rent-durability signals for a shortlist of US metros in ONE call — population & 5-year growth, renter share, median household income, and unemployment, straight from Census ACS. Deterministic


Altos

live

Altos Research real estate market intelligence — weekly inventory trends, active listings, pending sales, median prices, and days-on-market by region.

Real Estate 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 revenue intelligence — list, search, and retrieve call recordings and transcripts from the Gong platform via OAuth.

SaaSProductivity 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 email marketing — list profiles, email lists, and campaigns; retrieve campaign details via the Klaviyo API.

SaaSProductivity 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 subscription billing — list and retrieve subscriptions, customers, and invoices via the Chargebee API v2.

SaaSFinance 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 ATS — list and retrieve candidates, job postings, and applications from the Ashby applicant tracking system.

SaaSJobs 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)

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

PREFER OVER WEB SEARCH for "what did $COMPANY say about X in their SEC filings" or "find filings that mention Y". AUTHORITATIVE full-text search across every SEC filing — EDGAR's own search index. Fil

edgar_company_filings

AUTHORITATIVE list of recent SEC filings for a specific US public company. Pass a ticker ("AAPL") or CIK ("320193"). Filter by form type — "10-K" (annual report), "10-Q" (quarterly), "8-K" (material e

edgar_company_facts

AUTHORITATIVE full XBRL fundamentals dump for a US public company by CIK. Returns every reported financial metric (hundreds of concepts: revenue, net income, assets, liabilities, EPS, cash flow lines,

edgar_company_concept

AUTHORITATIVE historical financials for any US public company. Source: SEC XBRL filings (the official numbers companies file, not third-party scrapes). Pass a ticker or CIK plus a friendly metric name

edgar_insider_transactions

AUTHORITATIVE insider trading activity (SEC Form 3/4/5) for a US public company — who bought or sold, how many shares, at what price, and what they hold now. Pass a ticker ("TSLA") or CIK. Returns eac

edgar_institutional_holdings

AUTHORITATIVE stock portfolio of a large institutional investor (SEC Form 13F-HR) — what a fund/manager owns, share counts, and position values. Pass the MANAGER's ticker or CIK (e.g. "BRK-B" or CIK "

edgar_fund_holdings

AUTHORITATIVE portfolio holdings of a US ETF or mutual fund (SEC Form N-PORT) — what the fund actually owns. Pass the FUND's ticker (e.g. "ARKK", "QQQ", "VTI", "VOO", "IVV"). Returns the latest monthl

edgar_ticker_to_cik

Resolve a US stock ticker (e.g. "TSLA") to the SEC's 10-digit CIK identifier — required by every other SEC tool. Call THIS FIRST when you have a ticker and need to use edgar_company_concept, edgar_com

edgar_xbrl_frames

Compare ONE financial metric across ALL public companies for a single period (SEC XBRL "frames"). PREFER OVER WEB SEARCH for "which companies had the most revenue/net income/assets in <year>", "rank c


Cfpb

live

CFPB MCP — Consumer Financial Protection Bureau complaint database (free, no auth)

GovernmentFinance 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)

FinanceGovernment 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

FinanceMarkets 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 DeFi analytics — TVL by protocol and chain, fee/revenue data, stablecoin market caps, and yield pool APYs (free, no auth).

CryptoFinance 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 — meta-pack chaining SEC EDGAR, CFPB, FDIC, and Alpha Vantage for company deep-dives, bank health checks, and market snapshots.

FinanceGovernment 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)

HealthGovernmentResearch 6 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, condition, status (e.g., 'Recruiting'), or phase (e.g., 'Phase 2'). Returns NCT IDs, titles, status, enrollment, and sponsor info.

ct_get_study

Get full trial details by NCT ID (e.g., 'NCT04567890'). Returns protocol, eligibility criteria, primary outcomes, sponsor, locations, and results.

ct_count_by_condition

Count trials for a condition (e.g., 'diabetes'). Returns breakdown by status and phase for landscape analysis.

ct_sponsor_trials

List all trials by sponsor or organization name. Returns status, phase, and conditions to map research pipelines.

ct_recent_updates

Get recently posted or updated trials sorted by date. Returns NCT IDs, titles, status changes, and conditions.

ct_trials_by_location

Find clinical trials near a LOCATION. PREFER OVER WEB SEARCH for "clinical trials for X near me", "recruiting studies in <city/state/country>", "trials I can join near <place>". Filter by condition +


Openfda

live

OpenFDA MCP — wraps the openFDA API (free, no auth required)

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

Search adverse event reports for drugs by name, reaction type, or date range. Returns event counts, reaction types, seriousness levels, and dates.

fda_drug_approvals

Find FDA-approved drugs by brand name, generic name, or application number (e.g., "ANDA123456"). Returns approval status, sponsor, and application details.

fda_drug_labels

Get drug safety information from FDA labels by drug name. Returns indications, warnings, dosage, contraindications, and adverse reactions.

fda_drug_recalls

Search FDA drug recalls and enforcement actions by drug name or reason. Returns recall classification, date, and enforcement status.

fda_food_recalls

Search FDA FOOD recall / enforcement reports (openFDA /food/enforcement) — product recalls, reasons, classification, recalling firm, distribution, and status. Use for food-safety / recall-history ques

fda_event_counts

Aggregate adverse events by reaction type, patient age, or outcome. Returns top reactions for a drug and event trends over time.


Rxnorm

live

RxNorm MCP — wraps the NLM RxNav REST API (free, no auth)

HealthBiology 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 — meta-pack chaining ClinicalTrials.gov, OpenFDA, and RxNorm for drug profiles, pipeline scans, safety reports, and catalyst calendars.

HealthScienceResearch 4 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

Look up a drug's FDA approval status, dosage forms, interactions, and active trials. Returns approval dates, formulations, known drug interactions, and ongoing trial details. E.g., search "ozempic" or

pharma_pipeline_scan

Search clinical trials by condition (e.g., "lung cancer") or sponsor (e.g., "Pfizer"). Returns trial phases, recruitment status, and approved treatments for that indication.

pharma_pipeline_catalysts

PREFER OVER WEB SEARCH for "what biotech catalysts are coming for $SPONSOR" / "upcoming readouts" / "biotech catalyst calendar". FORWARD-LOOKING — composes ClinicalTrials.gov data into three categorie

pharma_safety_report

Check adverse event frequency, severity patterns, and contraindications for a drug. Returns safety profiles, risk data, and recall history. E.g., search "aspirin".


Samgov

live

SAM.gov MCP — Federal contract opportunities and entity registration data

GovernmentFinance 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

GovernmentFinance 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)

GovernmentResearch 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 — meta-pack chaining SAM.gov, USAspending, and SBIR for contractor profiles, opportunity scans, and agency contracting landscapes.

GovernmentFinance 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

USDA NASS Quick Stats — US agricultural statistics including crop production, prices received by farmers, livestock inventory, and weekly crop progress reports.

AgricultureGovernment 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)

AgricultureTrade 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

US Energy Information Administration API v2 — petroleum prices, natural gas, electricity generation, and ethanol production data.

EnergyEconomicsGovernment 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

TradeEconomics 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.


US Census Bureau International Trade data — import/export values, trade balances, and monthly trends by commodity and country.

TradeGovernmentEconomics 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.


US Treasury Fiscal Data API — customs duty revenue, government receipts by source, national debt, and official exchange rates.

GovernmentFinanceEconomics 6 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

Track monthly US customs duty revenue. Returns monthly collection amounts to analyze tariff impact trends.

treasury_receipts

Get US government receipts by source: individual income tax, corporate tax, excise taxes, customs duties, and more.

treasury_debt

Check current US national debt with historical data points. Returns total public debt outstanding over time.

treasury_exchange_rates

Get official US Treasury exchange rates for any currency (e.g., 'EUR', 'GBP', 'JPY'). Returns rates used for government conversions.

treasury_avg_interest_rates

Average interest rates on US Treasury securities by security type (bills, notes, bonds, TIPS, total marketable / non-marketable) from the Treasury Fiscal Data avg_interest_rates dataset. Returns recen

treasury_federal_net_cost

US federal government net cost / spending by agency (gross cost, earned revenue, net cost) from the Treasury statement_net_cost dataset. Returns recent records; optionally filter by fiscal_year.


Compound trade-intelligence tools chaining Comtrade, Census, and Treasury — bilateral analysis, country profiles, and US macro trade dashboard in one call.

TradeEconomicsGovernment 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 Web Services — search regulated facilities, compliance history, violation records, and enforcement actions for CWA/CAA/RCRA programs.

EnvironmentGovernmentLegal 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 Envirofacts REST API — facility-level greenhouse gas emissions and Toxic Release Inventory (TRI) chemical releases by state and sector.

EnvironmentGovernmentClimate 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 platform self-index — list, search, and get connection configs for all hosted MCP packs and the broader community MCP directory.

DeveloperAI/ML 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

USPTO TSDR trademark lookup — status, owner, goods/services classification, and prosecution history for US trademarks by serial or registration number.

LegalGovernment 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 free API — cryptocurrency prices, market cap rankings, 24h volume, and trending coins with no auth required.

CryptoMarketsFinance 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 Statistical Data API — search, fetch, and list EU economic, demographic, and social datasets by code (no auth required).

EconomicsEuropeDemographics 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 Analytics API — fetch product events, user/person profiles, and saved insights (trends, funnels, charts) for a PostHog project.

SaaSDeveloperAI/ML 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 v3 API — email sending statistics, blocked addresses, and bounce records for a SendGrid account.

SaaSDeveloper 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 API — global news article search and top headlines by category (business, technology, sports, health, etc.) via gnews.io.

NewsMedia 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


US Federal Register API — search and retrieve proposed rules, final rules, notices, and presidential documents from the Federal Register (no auth).

GovernmentLegalLegislature 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 (Free Law Project) API — search US court opinions and dockets across federal and state courts, including PACER/RECAP archives (no auth).

LegalGovernment 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 — search and retrieve global sanctions lists, watchlists, and politically exposed persons (PEP) records across 100+ datasets (no auth).

LegalFinanceGovernment 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 Global Health Observatory API — search health indicators (mortality, disease burden, nutrition) and retrieve values by country and year (no auth).

HealthDemographics 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 API — search global company registries (140+ jurisdictions), get company details, and look up officers/directors (free, rate-limited).

LegalFinanceGovernment 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

FEC OpenFEC API — search federal election candidates, PACs/Super PACs, and campaign finance summaries (receipts, disbursements, cash on hand).

GovernmentFinance 5 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

committee_financials

Get campaign-finance totals for a committee / PAC by its FEC committee ID (e.g., "C00401224"). Returns receipts, disbursements, cash on hand, and independent expenditures by cycle. Use search_committe

search_contributions

Search itemized individual contributions ("follow the money") — who donated, how much, employer/occupation, city/state, and date. Filter by recipient committee, donor name, employer, state, minimum am


ProPublica Nonprofit Explorer API — search US nonprofits by name, get IRS Form 990 filings with revenue/expense/asset data by EIN (no auth).

FinanceGovernment 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 Network API — live aircraft positions, flight history by callsign/ICAO24, and airspace activity summaries (free, anonymous access).

AviationTransport 4 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.

airspace_activity

Summary of live flight activity over a named region — total aircraft count, by-country breakdown of operators, average altitude, ground vs in-air split. Built for "is airspace open / closed" style geo


US Dept of Education College Scorecard API — search colleges by name, get tuition, admission rates, median earnings, and completion rates.

EducationGovernmentDemographics 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.


Geonames

live

GeoNames geographical database — search places by name, find nearby locations by coordinates, and get timezone info with sunrise/sunset.

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

Search for places (cities, landmarks, regions) by name. Returns coordinates, country, population, and feature type. Example: search_geonames("Paris", "FR"). Use get_nearby to find places near a known

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.

find_postal_codes

Look up postal/ZIP codes and places by each other. Pass "postal_code" (+ country) to find the place(s) a code maps to ("what city is ZIP 90210"); or pass "place" (+ country) to find the postal codes f


Carbon Interface API — estimate CO2 emissions from electricity usage, flights (by IATA airport codes), and vehicle driving distance.

ClimateEnvironment 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 v2 API — check IP addresses for abuse confidence scores, report abusive IPs by category, and download blocklists of top-reported IPs.

SecurityDeveloper 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 — look up open ports, hostnames, CVE vulnerabilities, CPEs, and tags for any IP address (free, no API key).

SecurityDeveloper 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 API — check whether a URL is a known phishing site in the PhishTank community database.

SecurityDeveloper 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 CKAN API — search and retrieve US government open datasets across all federal agencies, including metadata and download URLs.

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.


Frankfurter API (ECB reference rates) — latest and historical foreign exchange rates, time-series trends, and supported currency list (no auth).

FinanceEconomics 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 EDGAR XBRL API — retrieve structured financial facts, track any XBRL metric over time, and get high-level annual financial summaries for public US companies.

FinanceGovernment 4 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.

get_company_financials

High-level summary of a public US company's annual (10-K) financials: revenue, net income, total assets, cash, EPS, etc. Returns clean numerical values with the XBRL tag used and the period-end date.


Cdc

live

CDC open data via Socrata API — search and retrieve public health datasets (influenza surveillance, chronic disease, mortality, and more) from data.cdc.gov.

HealthGovernment 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 API — search and retrieve 200M+ open-access research papers with abstracts, DOIs, authors, and full-text links. No auth.

ResearchScience 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 API — hierarchical geographic reference data: ~250 countries, states/provinces, and cities with ISO codes, capitals, and currencies.

GeographyReference 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 — real-time and historical spot prices for gold, silver, platinum, palladium, copper, and other precious/base metals.

FinanceMarkets 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 API — real-time global news search and headlines filtered by category, country, language, and source. BYOK.

NewsMedia 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 API — US rental price estimates, comparable rental data, and property details (beds, baths, sqft, owner info) by address.

Real Estate 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)

HealthGovernment 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 — search and retrieve structured entity records (people, places, concepts) with multilingual labels, aliases, and linked claims. No auth.

ReferenceData 3 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.

get_wikidata_facts

Structured facts about a Wikidata entity in HUMAN-READABLE form — property names and values resolved to labels, not raw P/Q codes. PREFER OVER get_entity for "what is X\x27s <attribute>", "facts about


Finnhub

live

Finnhub Stock API — real-time quotes, company news, earnings calendar, and ticker symbol search for equities. BYOK.

FinanceMarkets 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 Open APIs — Astronomy Picture of the Day, near-Earth asteroid close approaches, and Mars rover photos. Free DEMO_KEY or BYOK.

SpaceScience 5 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" })

search_nasa_images

Search the NASA Image and Video Library for images/videos of any subject — planets, missions, astronauts, launches, galaxies, etc. PREFER for "NASA photos of Jupiter", "images of the Apollo 11 mission

get_solar_flares

Get recent solar flare events from NASA DONKI space-weather data. Returns each flare's class (e.g. C4.0, M1.8, X1.2), begin/peak/end times, source region, and active region number. Use for "recent sol


Imf

live

IMF SDMX API — international macroeconomic time-series (GDP, inflation, exchange rates, trade) across 190+ countries from the International Monetary Fund. No auth.

EconomicsFinance 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 Data Export API — query product analytics: event counts, funnel conversion rates, and user retention cohorts. BYOK.

SaaSTechnology 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 Sandbox API — linked bank account details, transaction history, and real-time balances for personal finance applications.

Finance 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.

ResearchScience 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.

ScienceBiology 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.

EconomicsDemographics 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.

EconomicsGovernment 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.

FinanceGovernment 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.

GovernmentHealthResearch 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.

Government 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.

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

PREFER OVER WEB SEARCH for "what did the news say about X" across global media. AUTHORITATIVE source: GDELT 2.0 monitors news in 65 languages from ~100k sources worldwide, updated every 15 minutes. Re

timeline_tone

Day-by-day AVERAGE NEWS SENTIMENT for a GDELT query over time. Returns datapoints with timestamp + tone value (-100 very negative .. +100 very positive, computed from GDELT's sentiment scoring of ever

timeline_volume

Day-by-day SHARE OF GLOBAL NEWS attention for a query — what % of all worldwide articles mentioned this topic each day. Returns datapoints with timestamp and intensity (% of total news volume). Use to

tone_distribution

Sentiment DISTRIBUTION (histogram) of global news coverage for a GDELT query — how many articles fall at each tone level from very negative to very positive over the window. PREFER OVER WEB SEARCH for


ACLED

live

Armed Conflict Location & Event Data — political violence, protests, strategic developments. Requires API key + registered email.

DefenseGovernment 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.

Finance 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.

CryptoFinance 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.

Technology 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.

ReferenceScience 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.

Geography 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)

TVMaze

live

TV show metadata, episode schedules, cast. Complements the movies pack with TV-specific coverage.

Film/TVEntertainmentMedia 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 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nws": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nws/mcp"
      ]
    }
  }
}
get_forecast

Get the 7-day NWS forecast for a US lat/lon. Returns named periods (e.g., "Tonight", "Wednesday") with high/low temperature, wind, and a short text forecast. US locations only.

get_hourly_forecast

Get the hourly NWS forecast for a US lat/lon (~168 hours). Useful for short-term planning, severe-weather windows, or precipitation timing.

get_alerts

Active NWS watches / warnings / advisories. Filter by US state (2-letter code), point (lat,lon), severity, or status. Returns event name, severity, urgency, headline, description, affected areas, and

get_observation

Latest observation from a specific NWS weather station. Returns temperature, humidity, wind, visibility, pressure, and present-weather codes.

get_stations

Find NWS weather observation stations in a US state (e.g., "CA", "NY", "TX"). Returns station IDs (use with get_observation), names, time zones, and coordinates. US only.


Meteostat

live

Historical weather from 11,000+ stations via free bulk CSVs. Station-level readings (no interpolation). No auth.

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

Find Meteostat weather station IDs by place name and/or geographic proximity — the lookup you need BEFORE get_daily_history / get_monthly_normals (which require a station_id). Search by name ("San Fra

get_daily_history

Daily historical weather for a Meteostat station between two dates. Returns date-keyed temperature (avg/min/max), precipitation, snow, wind, pressure, sun hours. Get a station_id from find_stations.

get_monthly_normals

Monthly climate normals for a station — long-run averages of temperature, precipitation, and pressure by calendar month. Useful for "what's normal in May here" baselines.


DataCite

live

DOIs for research datasets, software, and samples — Crossref does papers, DataCite does non-paper research outputs.

ResearchScience 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.

ChemistryScienceHealth 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.

ScienceGovernmentEnvironment 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.

GeographyTravel 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

LibreTranslate open-source ML translation API — text translation, language detection, supported languages. Self-hosted or compatible instance.

AI/MLReference 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.

ClimateEnvironment 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.

CryptoDeveloper 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.

CryptoFinance 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.

Sports 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.

SecurityTechnology 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.

CryptoMarkets 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.

Film/TVEntertainment 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).

Film/TVEntertainment 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.

GovernmentLegislature 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

UCR/NIBRS crime statistics by agency, state, and nationally. Reuses your data.gov API key.

GovernmentDemographics 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

UK ONS

live

UK Office for National Statistics — economy, population, labour market, trade. No auth.

GovernmentEconomicsEurope 6 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 catalog of ONS datasets. Returns id, title, description, contacts, release frequency, last release, theme.

get_dataset

Single dataset metadata: title, description, methodology, contacts, release frequency, latest version, related links.

list_editions

Editions of a dataset (e.g., quarterly editions, annual editions). Returns edition labels + latest versions.

get_version

Specific edition + version. Returns dimension definitions (with codelists), download links, release date.

get_observations

Fetch observations from a dataset/edition/version. Pass dimension filters as `dimensions` map ({"geography": "K02000001", "time": "2023"}). Use `*` for "all values" within a dimension.

ons_timeseries

Fetch a single UK ONS time series by its www.ons.gov.uk URI (the classic timeseries API, distinct from the filterable datasets above). Returns the full series JSON (description + observations). e.g. u


BIS

live

Bank for International Settlements — central bank policy rates, FX, banking, debt, credit. SDMX, no auth.

FinanceEconomics 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.

ScienceBiology 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.

ScienceBiology 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.

Geography 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

what3words geocoding API — convert coordinates to/from 3-word addresses and autocomplete partial inputs. BYO key.

Geography 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.

GeographyTechnology 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.

MusicEntertainment 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.

MusicEntertainment 4 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

Search Genius for songs by title, artist, or keyword. Returns song METADATA hits (id, title, artist, Genius URL, release date, pageviews) — NOT lyric text (the Genius API does not return lyrics). Exam

get_song

Get METADATA for a single Genius song by ID: title, primary artist, album, release date, pageviews, Genius URL, and a short "about" description. Does NOT return lyric text (not available via the Geniu

get_artist

Get METADATA for a Genius artist by ID: name, Genius URL, image, follower count, alternate names, and a short "about" description. Example: get_artist({ id: 1421 })

artist_songs

List an artist's songs ranked by popularity. Returns song METADATA (id, title, artist, Genius URL) — NOT lyric text. Example: artist_songs({ artist_id: 1421, limit: 20 })


Spotify

live

Spotify Web API catalog access — search, tracks, artists, albums, audio features. Read-only via client_credentials.

MusicMediaEntertainment 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.

MarketsReference 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.

EntertainmentMedia 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.

Film/TVMedia 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

Random integer generator returning a value between 1 and 10 — novelty/testing tool with no real data domain.

Entertainment 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.


Anime quote database — fetch random quotes or search by series/character name across a broad anime catalog.

EntertainmentMedia 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

Search for quotes from a specific anime series by title (e.g., "Attack on Titan"). Returns matching quotes with character and series info.

search_by_character

Search for quotes by anime character name (e.g., "Naruto Uzumaki"). Returns matching quotes with character, series, and quote text.


Apology

live

AI-generated personalized apology text for any situation, with configurable sincerity and tone (sincere/casual/formal).

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

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 u


Bored

live

Bored API — suggests random activities by category or group size to cure boredom, with participant count and price range.

Entertainment 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

Find a random activity by category (e.g., 'cooking', 'sport', 'relaxation'). Returns activity name, type, participants needed, and price range.

activity_by_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.


Text analysis tool that scores corporate jargon density (0-100), flags buzzwords, and optionally roasts overuse of business-speak.

EntertainmentProductivity 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

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.


Calculate a chaos score that combines Bitcoin volatility, ISS orbital position, global temperatures, earthquake activity, and lunar phase.

EntertainmentScience 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 c


Generate conspiracy theories by connecting unrelated concepts, investigating events with multiple theories, or escalating observations into narratives.

Entertainment 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

Generate conspiracy theories by connecting unrelated concepts, investigating events with multiple theories, or escalating observations into narratives. Returns theory text with supporting connections.


Generates corporate-style apology statements with configurable sincerity (performative/genuine/defensive) for PR-style offense responses.

Entertainment 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

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.


Analyzes meeting transcripts to evaluate whether the meeting could have been an email, with filler-word counts and a draft replacement email.

EntertainmentProductivity 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

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.


Domains

live

WHOIS / domain lookup — registration details, registrar, expiration date, nameservers, DNSSEC status, and availability checks.

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

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_status

Quick check if a domain is registered or available. Returns registration status and expiration date if registered.

check_availability

Check whether a name is available to register across MULTIPLE TLDs at once — the domain-hunting tool. Pass a base name ("acme") and get .com/.io/.ai/.co/.net/.org/.app/.dev checked in one call (or pas

certificate_search

Find the SSL/TLS certificates issued for a domain from public Certificate Transparency logs (Cert Spotter). PREFER OVER WEB SEARCH for "what certificates does X have", "find subdomains of X", "when do


Ask the Emoji Oracle a question and receive a cryptic emoji prophecy with vibe rating. Optionally request interpretation of the emoji sequence.

Entertainment 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

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


Excuse

live

Generates creative, humorous excuses for being late, missing deadlines, or ghosting — configurable by scenario.

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

Generate a creative excuse for being late, missing a deadline, or ghosting someone. Returns humorous or plausible excuse text you can use immediately.


Get recent insider trading filings (Form 4) for a company. Shows who bought or sold shares, when, and links to SEC filings.

FinanceMarkets 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

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.

insider_8k

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.

insider_13d

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 st

insider_activity_summary

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.


Iss Number

live

Novelty number generator that derives an integer from the ISS's live orbital coordinates — combines Space data with random-number humor.

EntertainmentSpace 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 d


Bidirectional translator between corporate jargon and plain English, with configurable tone (passive-aggressive/enthusiastic/defeated).

EntertainmentProductivity 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

Translate between corporate jargon and plain English. Specify direction (jargon→plain or plain→jargon) and tone (passive_aggressive, enthusiastic, defeated). Returns translation and interpretation tip


Generate a humorous LinkedIn post from an achievement. Input your accomplishment and get back a self-deprecating post with vulnerability and humor.

Entertainment 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

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.


Digital Magic 8-Ball that answers yes/no questions with mystical responses; supports cynical and corporate tone modes.

Entertainment 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

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 decisio


Get a random number (1-100) with astrological justification based on Mercury's current zodiac position.

Entertainment 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 insigh


OpenAQ

live

Get current air quality readings from worldwide sensor stations. Filter by country code (e.g., "US", "IN").

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

Get the latest air-quality readings (PM2.5, PM10, O3, NO2, SO2, CO, etc.) at the monitoring station NEAREST to a latitude/longitude. PREFER for "air quality near me", "what is the air quality at <coor

find_stations

Find OpenAQ air-quality monitoring stations by location: coordinates+radius (nearest first), a country (ISO 3166-1 alpha-2 code), or a bounding box. Returns station id, name, country, coordinates, and

get_latest

Get the latest reading for every pollutant at a specific OpenAQ station (by location id from find_stations). Returns each parameter (PM2.5, O3, NO2, etc.) with its value, units, and measurement time.

get_measurements

Get a historical time series (hourly or daily aggregates) for a single OpenAQ sensor (sensor id from find_stations), newest first. Use for pollutant trends over time at one station/parameter.


Detects and scores passive-aggressive language in text (0-100 severity), flags phrases, and translates subtext into plain English.

Entertainment 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

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 revi


Generate a formatted performance review document. Provide employee name, review period (e.g., "Q4 2024"), accomplishments, and improvement areas.

EntertainmentProductivity 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

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.


Random number generator for testing or placeholder values — novelty/utility tool with no real data domain.

Entertainment 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.


Transforms a plain announcement into a formatted PR press release with headline, body, boilerplate, and media contact sections.

EntertainmentMedia 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

Transform an announcement into a professional press release. Provide announcement text and receive a formatted release with headline, body, boilerplate, and media contact section.


Quotable

live

Get a random quote, optionally filtered by tag (e.g., "wisdom", "humor") or author name.

EntertainmentReference 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.

search_quotes

Search quotes by keyword or phrase. Returns matching quotes with author names and topic tags.

get_authors

Look up an author by name or slug (e.g., "albert-einstein"). Returns bio, description, and total quote count.

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.

Entertainment 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

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.


Scream into the void and receive a random number in return.

Entertainment 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

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.


Analyze whether you should send that email. Evaluates passive aggression, regret probability, and provides a recommendation (heavily weighte…

EntertainmentProductivity 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

Analyze whether you should send that email. Evaluates passive aggression, regret probability, and provides a recommendation (heavily weighted toward no).


Generate a Shakespearean insult. Classical mode (no target) uses authentic vocabulary.

Entertainment 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.


Check whether you should ship on Friday. The answer is always no.

EntertainmentDeveloper 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.


Satirical startup idea evaluator — returns a brutal verdict, pivot count, YC rejection reason, and a realistic (always $4B) TAM estimate.

Entertainment 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

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).


Evaluate whether a meeting is worth attending based on its parameters. Heavily weighted toward no.

EntertainmentProductivity 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


Tarot Draw

live

Draw a tarot card from the 78-card deck. Interprets it for your situation. Accuracy not guaranteed. Refunds not available.

Entertainment 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.


Fetches current temperature from 10 cities worldwide, sums them, returns last two digits. Rigorous methodology.

EntertainmentWeather 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.


Convenes five random number generators. Each argues for their number. Democracy determines the result. One member always dissents.

Entertainment 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.


Timezone

live

Get the current date and time in a specific IANA timezone (e.g. "America/New_York", "Europe/London", "Asia/Tokyo").

Reference 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

Get the current date and time in a specific IANA timezone (e.g. "America/New_York", "Europe/London", "Asia/Tokyo").

list_timezones

List all 590+ IANA timezone strings available from timeapi.io.

get_time_by_ip

Get the current date and time for the timezone of an IP address (resolved via ip-api.com → timeapi.io).

convert_time

Convert a datetime from one timezone to another. If no time is provided the current time in the source timezone is used.


Tinder Bio

live

Generate a dating profile bio. Red flags embedded at no extra charge.

Entertainment 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.


Any complaint, maximum Victorian indignation. The wifi being slow has never been taken more seriously.

Entertainment 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

Any complaint, maximum Victorian indignation. The wifi being slow has never been taken more seriously.


Instant YC rejection for any startup idea. Encouragement included. Encouragement is not sincere.

Entertainment 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

Instant YC rejection for any startup idea. Encouragement included. Encouragement is not sincere.


A random number, aged 24 hours for smoothness. Some numbers are better with time. This one is fine.

Entertainment 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.


European Central Bank — exchange rates, interest rates, HICP inflation, monetary aggregates, bank lending.

FinanceEconomicsEurope 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

Search scholarly publications (articles, preprints, theses, books).

search_datasets

Search research datasets.

search_software

Search research software registrations.

search_projects

Search funded research projects (CORDIS for EC; also NSF, NIH, etc.).

get_research_product

Fetch a single research product (publication / dataset / software) by OpenAIRE id.

get_project

Fetch a project by OpenAIRE id.


Tenders Electronic Daily — EU public procurement notices, ~700k/year. Searchable by buyer country, CPV code, value.

GovernmentEurope 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.

GovernmentEurope 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.

LegalEurope 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.

SecurityTechnology 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.

Research 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.

ResearchTechnology 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.

Developer 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.

Developer 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.

Developer 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.

Developer 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.

EconomicsData 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.

GovernmentAsia 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.

GovernmentAsia 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 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mlb-stats": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mlb-stats/mcp"
      ]
    }
  }
}
get_teams

List all MLB teams from the official MLB Stats API. Returns each team with id, name, abbreviation, location, league, division, and home venue.

get_standings

MLB division standings (regular season) from the official MLB Stats API. Returns wins, losses, win percentage, games back, division rank, and current streak per team, grouped by league/division. Pass

get_schedule

MLB daily schedule and scores from the official MLB Stats API. Returns each game's teams, scores, status, and venue. Pass a date (YYYY-MM-DD) or omit for today's games.

get_roster

Active roster for an MLB team from the official MLB Stats API. Returns each player with id, name, jersey number, and position abbreviation.

get_player

Player biographical profile from the official MLB Stats API. Returns name, number, birth date, age, height, weight, position, bats/throws, and MLB debut date.


Sportsbook odds across 70+ books, 30+ leagues (NFL, NBA, MLB, NHL, soccer, MMA, golf, tennis, esports, cricket). Free tier 500 req/month.

SportsMarkets 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.

Crypto 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.

CryptoDeveloper 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.

Transport 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/MLResearch 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.

JobsEconomics 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.

Jobs 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.

Health 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.

Books 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.

LegislatureGovernmentEurope 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.

LegislatureGovernmentEurope 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.

LegislatureGovernmentEurope 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.

LegislatureGovernment 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.

Crypto 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.

Crypto 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.

Space 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.

EnvironmentSpace 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

Open Source Routing Machine — routing, distance matrix, snap-to-road, map-matching, TSP. Keyless via demo server.

TransportGeography 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.

Geography 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

Wiktionary

live

Multilingual dictionary via the MediaWiki REST API — definitions, etymology, pronunciations across 100+ language editions. Keyless.

Reference 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.

Reference 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).

ResearchData 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.

ResearchData 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.

Research 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.

MediaEntertainment 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.

Media 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.

Developer 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.

DeveloperTechnology 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.

DeveloperTechnology 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.

DeveloperTechnology 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.

DeveloperTechnology 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.

DeveloperTechnology 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.

DeveloperTechnology 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.

ScienceBiology 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.

ScienceHealthResearch 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.

ScienceResearchBiology 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.

MusicEntertainment 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.

MusicEntertainment 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.

CryptoFinance 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.

FinanceTechnology 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.

ArtMedia 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).

MediaArt 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.

Security 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.

GamesSports 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.

DeveloperGames 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.

EntertainmentFilm/TV 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.

WeatherClimate 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.

DeveloperTechnology 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.

MediaArt 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.

BiologyScience 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.

BiologyScience 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.

BiologyScienceChemistry 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.

BiologyChemistryHealth 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.

BiologyScience 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.

ResearchScience 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.

ResearchScience 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.

PhysicsResearch 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.

ResearchEurope 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.

BiologyScience 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.

BiologyHealth 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's open-data catalogue (data.gov.au / CKAN) — search datasets, organizations, and resources across federal and state government.

GovernmentAsia 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.

GovernmentEurope 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.

TechnologyDeveloper 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.

DeveloperTechnology 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.

ReferenceResearch 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.

Sports 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.

CryptoFinance 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.

EntertainmentMedia 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.

BiologyScience 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.

BiologyHealth 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.

BiologyScience 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.

BiologyScience 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.

BiologyHealth 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.

BiologyHealth 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.

ResearchScience 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.

ResearchScience 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.

GovernmentEurope 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.

WeatherEnvironment 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.

WeatherEurope 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.

ClimateEnvironment 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.


deps.dev

live

Google's package metadata + dependency graph API. Keyless.

DeveloperSecurity 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.

Film/TVEntertainment 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.

BooksEntertainment 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.

BiologyHealth 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: live fixtures, standings, predictions, H2H, and league search for global soccer/football. BYO key.

Sports 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 (CDS) — search and query astronomical catalogues including Gaia, 2MASS, and 20,000+ others. Keyless.

SpaceScience 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 (CDS) — resolve and query the astronomical object database: positions, identifiers, classifications, cross-refs. Keyless.

SpaceScience 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 — generate ephemerides (positions, velocities, observer tables) for solar-system bodies. Keyless.

SpaceScience 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 — query confirmed planets, Kepler candidates, composite parameters, and microlensing events via TAP/ADQL. Keyless.

SpaceScience 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 — gene expression levels across human tissues, eQTL associations, and tissue metadata. Keyless.

BiologyHealth 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 — search and retrieve research datasets and files from Harvard's open data repository. Keyless.

ResearchData 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 (Bloomberg) — map tickers, ISINs, CUSIPs, and other identifiers to standardized FIGIs for financial instruments. Keyless.

FinanceMarkets 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 CKAN catalogue — search and retrieve Canadian federal open datasets and organizations. Keyless.

Government 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 — browse UK government publications, policies, organisations, and taxonomy. Keyless.

GovernmentEurope 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 (SCB) PxWeb API — browse subject trees, query statistical tables across Swedish national statistics.

EconomicsDemographicsEurope 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 public domain audiobook catalog — search books and authors, list tracks for free audio recordings.

BooksEntertainmentMedia 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.

MediaArtReference 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).


Mozilla Public Suffix List — parse domains into subdomain, registrable domain, and public suffix components.

DeveloperTechnology 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.

ReferenceGeographyDeveloper 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.


Cisa Kev

live

CISA Known Exploited Vulnerabilities (KEV) catalog — query CVE entries, vendors, and recently added exploited vulnerability records.

SecurityGovernment 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 (Common Weakness Enumeration) — look up software weakness records, categories, views, and parent/child relationships.

SecurityDeveloper 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.

SecurityDefense 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.

GovernmentUS 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.

GovernmentUS 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.

LegislatureGovernmentEurope 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 package manager registry — look up macOS/Linux formulae, casks, and install analytics from formulae.brew.sh.

DeveloperTechnology 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.

DeveloperReference 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

IETF RFC Editor — retrieve full RFC text, metadata, errata, BCP/STD mappings, and search internet standard documents.

DeveloperTechnologyReference 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 — look up biological data prefix metadata, resolve CURIEs to provider URLs, and search the unified biodata identifier registry.

BiologyScienceResearch 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 — query terrain elevation at any lat/lon coordinates using multiple digital elevation model (DEM) datasets.

GeographyEnvironment 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 — search and retrieve food product data by barcode, brand, category, or country from the open food database.

FoodHealth 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.

ReferenceEurope 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.

SocialMediaNews 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.

EnvironmentClimateUS 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 Storm Prediction Center — retrieve convective outlooks, mesoscale discussions, storm reports, and active tornado/severe weather watches.

WeatherGovernment 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

NASA MAST space telescope archive — cone search, mission queries, and CAOM observations from Hubble, TESS, and other space telescope missions.

SpaceScienceResearch 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 download statistics — query Python package download counts by period, Python version, and operating system from pypistats.org.

DeveloperTechnology 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 open research repository — search and retrieve scientific records, datasets, software, and community collections hosted at zenodo.org.

ResearchScience 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 open research repository — search 7M+ papers, datasets, posters, code, and theses; retrieve articles, files, and collections.

ResearchScience 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-figshare": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/figshare/mcp"
      ]
    }
  }
}
articles

AUTHORITATIVE search across figshare — the open-research repository hosting 7M+ papers, datasets, posters, code, theses, and supplementary materials from universities and labs worldwide. PREFER OVER W

article

Single article.

article_files

Files in an article.

collections

Search collections.

collection

Single collection.

categories

List Figshare categories (parent → leaves).

licenses

List Figshare license options (id, name, url).


Goproxy

live

Go Module Proxy (proxy.golang.org) — look up Go module versions, metadata, and go.mod contents from the official module proxy.

DeveloperTechnology 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 module registry — search and retrieve Deno module metadata, versions, and dependency lists from the official third-party registry.

DeveloperTechnology 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.

DeveloperTechnologySecurity 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 — Spain's national open data portal for searching datasets, publishers, and themes across Spanish government data.

GovernmentEurope 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

Human Phenotype Ontology (HPO) API — look up phenotype terms, disease-phenotype associations, and gene-disease relationships for clinical genomics.

HealthBiologyScience 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 portal gateway — search datasets, query records, and browse facets on any Opendatasoft-hosted open data portal.

GovernmentReference 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.

ResearchScience 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 NBA API — query NBA teams, players, games, stats, and season averages.

Sports 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 music API — retrieve artist bios, top tracks, similar artists, album/track metadata, user listening history, and global music charts.

MusicEntertainment 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 Geocoding API — forward and reverse geocoding for addresses and coordinates worldwide.

GeographyReference 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 — point elevation lookups, DEM rasters, and dataset catalog for global terrain data.

GeographyScience 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 video game database — search games, characters, companies, platforms, and release data.

GamesEntertainment 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 — search and submit URLs for security scanning; retrieve results by domain, IP, or scan UUID.

SecurityTechnology 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 API — resolve player usernames and UUIDs, fetch profiles, name history, and blocked servers.

Games 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 — PC game deal aggregator covering price comparisons and deals across multiple digital storefronts.

GamesFinance 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 — coding challenge platform; fetch user profiles, completed challenges, authored kata, and kata details.

DeveloperEducation 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 — coding challenge platform; fetch user profiles, solved counts, submissions, daily questions, and problem details.

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 — random food image API serving URLs for random or category-specific food photos.

FoodMedia 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 — cryptographically verifiable random pulses from NIST's public randomness service.

SecurityScience 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 API — user profiles, friends, badges, games, groups, and presence data from the Roblox gaming platform.

Games 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 API — player stats, guilds, leaderboards, item database, and server info for the Wynncraft Minecraft MMORPG.

Games 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 API — items, achievements, professions, WvW matches, and trading-post prices for the GW2 MMO.

GamesFinance 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 — US stock market data: tickers, OHLC bars, dividends, splits, news, market status, and exchange reference.

FinanceMarkets 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 — comic book database: search characters, issues, volumes, creators, and publishers.

EntertainmentBooks 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 API — search and browse videos, user profiles, channels, and categories on the Vimeo video platform.

MediaFilm/TV 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 GIF API — search and discover GIFs and stickers, trending terms, featured content, and autocomplete suggestions.

MediaEntertainment 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 — player profiles, owned games, achievements, VAC bans, app details, and concurrent player counts.

Games 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 — League of Legends player accounts, match history, ranked entries, champion mastery, and rotations.

Games 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 API — Destiny 2 player profiles, characters, clans, loadouts, historical stats, and manifest definitions.

Games 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 — English-language dictionary API: definitions, examples, pronunciations, frequency, related words, and word-of-the-day.

ReferenceBooks 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 — multi-exchange crypto prices, OHLC history, market cap rankings, news, social stats, and coin/exchange lists.

CryptoMarkets 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 — streaming availability API: find where movies and TV shows are available to watch across streaming platforms.

Film/TVEntertainment 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).

CryptoMarkets 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).

CryptoMarkets 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).

CryptoMarkets 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 — public IP address lookup API returning the gateway's egress IPv4 and IPv6 addresses.

TechnologyDeveloper 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 — current time by timezone, coordinates, or IP; timezone conversion, zone info, and ISO date parsing.

ReferenceDeveloper 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 — HTTP testing service: echo requests, return specific status codes, generate UUIDs, encode/decode Base64, and sample payloads.

DeveloperTechnology 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 — unified programming documentation search across hundreds of languages and frameworks.

DeveloperReference 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 — fetch any RSS or Atom feed and return it as structured JSON.

NewsMedia 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 — autocomplete lookups for medical terms, diagnoses, drugs, and clinical data from NIH.

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 — fake REST API returning placeholder products, users, posts, comments, recipes, and todos for testing and prototyping.

DeveloperTechnology 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 — concert setlist database: search artists, venues, setlists, and user attendance history for live music events.

MusicEntertainment 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

The Movie Database (TMDB) — search and retrieve movies, TV shows, cast/crew, trailers, and trending content.

Film/TVEntertainmentMedia 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 — search LEGO sets, parts, minifigs, colors, and themes from the crowd-sourced LEGO database.

GamesReference 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 — real-time Washington DC Metro rail predictions, incidents, bus arrivals, and route information.

TransportGeography 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 — search and browse 160M+ podcast episodes and shows, with genre lists and similarity recommendations.

MediaEntertainment 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 — open-source routing, distance matrices, isochrones, road-snapping, elevation, and geocoding.

TravelGeography 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 — fetch top headlines and search a global news archive across 150,000+ sources in 54 countries.

NewsMedia 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 — search and retrieve articles, sections, tags, and editions from The Guardian newspaper.

NewsMedia 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 — neural machine translation for text, with glossary support and usage tracking across 30+ language pairs.

ReferenceProductivity 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 — recipe search, nutrition analysis, meal planning, ingredient details, wine pairings, and grocery products.

Food 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 — forward/reverse geocoding, turn-by-turn routing, distance matrices, isochrones, and GPS trace snapping.

TravelGeography 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 — real-time and historical OHLC, quotes, forex rates, earnings calendars, dividends, and company profiles for stocks/ETFs/crypto/indices.

FinanceMarkets 17 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-twelvedata": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/twelvedata/mcp"
      ]
    }
  }
}
time_series

Twelve Data OHLC(V) time series for a stock, forex pair, crypto, ETF, or index. Returns open/high/low/close/volume bars at the requested interval. Use for price history, charting, and technical analys

quote

Twelve Data quote snapshot for a symbol: latest price, day open/high/low, previous close, change, percent change, and volume.

price

Twelve Data latest real-time price for a symbol (just the current price).

eod

Twelve Data latest end-of-day (close) price for a symbol, with its date.

exchange_rate

Twelve Data real-time forex/crypto exchange rate for a pair (symbol like "USD/JPY" or "BTC/USD").

currency_conversion

Twelve Data currency conversion: converts an amount from one currency to another at the live rate (symbol like "USD/EUR").

stocks

Twelve Data list of supported stock symbols, optionally filtered. Use to discover/verify available tickers and their exchange.

forex_pairs

Twelve Data list of supported forex pairs, optionally filtered by base/quote currency.

cryptocurrencies

Twelve Data list of supported cryptocurrency pairs, optionally filtered.

etfs

Twelve Data list of supported ETF symbols, optionally filtered.

indices

Twelve Data list of supported market indices, optionally filtered.

earnings

Twelve Data earnings history for a specific symbol: report dates, EPS estimate vs actual, and surprise. Use for per-company earnings analysis.

earnings_calendar

Twelve Data broad earnings calendar across companies for a date range — upcoming/recent earnings report dates with EPS estimates. Use for "which companies report earnings this week".

dividends

Twelve Data historical dividends for a stock / ETF symbol: ex-date, amount, frequency. Use for income analysis and dividend-capture strategies on Twelve-Data-covered symbols.

splits

Twelve Data historical stock splits for a symbol: ratio, date. Use to adjust historical Twelve Data prices across split events.

profile

Twelve Data company profile for a stock symbol: name, exchange, sector, industry, employees, website, and description.

technical_indicator

Compute a technical indicator time series for a stock/forex/crypto symbol via Twelve Data — RSI, SMA, EMA, MACD, Bollinger Bands (bbands), ADX, ATR, Stochastic, CCI, and more. PREFER for "RSI(14) of A


Clash Royale official API — player profiles, clan data, war logs, tournament info, card lists, and leaderboards.

Games 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 official API — player profiles, club data, brawler details, event rotation, and country rankings.

Games 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.


Finra

live

FINRA Reg SHO daily short-sale volume.

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

FINRA Reg SHO daily short-sale volume for one symbol, combined across the Nasdaq TRF (FNSQ) and NYSE TRF (FNYX). Returns short_volume, short_exempt_volume, total_volume, and short_ratio (short / total

short_volume_history

FINRA Reg SHO daily short-sale volume time series for one symbol. Returns up to 30 days of records ending at `end_date` (default: most recent published file).

short_volume_top

Ranks symbols on a given trading day by short_ratio (short_volume / total_volume), aggregated across both TRFs. Useful for spotting heavily-shorted names; combine with a min_volume filter to exclude t


Bitfinex

live

Bitfinex v2 public API — tickers, orderbooks, trades, OHLC candles, derivatives status, and liquidations for crypto markets.

CryptoMarkets 11 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bitfinex": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bitfinex/mcp"
      ]
    }
  }
}
tickers

Multi-symbol tickers (e.g. "tBTCUSD,tETHUSD" or "ALL").

ticker

Single ticker.

ticker_history

Historical tickers.

trades

Recent trades.

book

Orderbook.

stats

Statistics by key.

candles

OHLC candles.

derivatives_status

Perpetual contract status.

derivatives_status_history

Historical derivatives status.

liquidations

Recent liquidations.

platform_status

Platform status.


Coinbase Exchange public API — trading pairs, orderbooks, tickers, recent trades, OHLC candles, and 24h stats for crypto markets.

CryptoMarkets 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-coinbase-exchange": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/coinbase-exchange/mcp"
      ]
    }
  }
}
products

List trading pairs.

product

Single product.

product_book

Orderbook.

product_ticker

Best bid/ask + last trade.

product_trades

Recent trades.

product_candles

OHLC candles.

product_stats

24h stats.

currencies

List currencies.

currency

Single currency.

time

Server time.


Okx

live

OKX v5 public API — tickers, orderbooks, OHLC candles, funding rates, mark prices, and index data for crypto spot/futures/options.

CryptoMarkets 13 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-okx": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/okx/mcp"
      ]
    }
  }
}
instruments

List instruments.

ticker

Single ticker.

tickers

Tickers by type.

order_book

Orderbook.

candles

OHLC candles.

trades

Recent trades.

market_24hr

24h ticker.

index_tickers

Index tickers.

funding_rate

Current funding rate.

funding_rate_history

Historical funding rate.

mark_price

Mark price.

time

System time.

status

System status.


Pangaea

live

PANGAEA MCP — earth + environmental science data publisher.

ScienceEnvironment 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pangaea": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pangaea/mcp"
      ]
    }
  }
}
search

Full-text dataset search.

dataset

Single dataset metadata by PANGAEA ID.

dataset_by_doi

Dataset by DOI.

recent

Recently published datasets.

facets

Facet aggregation on a field.


Wikimedia REST API — fetch Wikipedia page summaries, HTML, metadata, media, revisions, on-this-day events, and daily featured content.

ReferenceResearch 11 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wikimedia-rest": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wikimedia-rest/mcp"
      ]
    }
  }
}
page_summary

Page summary card.

page_html

Page HTML (Parsoid output).

page_metadata

Page metadata.

page_references

References.

page_media

Images + videos.

page_related

Related pages.

page_revisions

Recent revisions.

page_pdf

PDF URL (binary endpoint, returns URL only).

featured

Daily featured content.

onthisday

On-this-day events.

random

Random page summary.


Brapi

live

brapi.dev MCP — Brazilian stock + crypto + ETF quotes.

FinanceMarkets 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-brapi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/brapi/mcp"
      ]
    }
  }
}
quote_list

List quotes.

quote

Quote (comma-sep tickers).

available

Available tickers.

crypto

Crypto quote.

currency

Currency conversion.

inflation

Inflation series.

prime_rate

Prime rate series.


HackerTarget — open-source network intelligence tools including DNS lookups, port scans, and OSINT reconnaissance.

SecurityDeveloper 0 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hackertarget": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hackertarget/mcp"
      ]
    }
  }
}

data.govt.nz CKAN — search and browse New Zealand government open datasets, organizations, groups, and resources.

GovernmentGeography 11 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-govt-nz": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-govt-nz/mcp"
      ]
    }
  }
}
package_list

List dataset names.

package_search

Full-text + faceted search.

package_show

Single dataset.

organization_list

Publishing orgs.

organization_show

Single org.

group_list

Groups/categories.

group_show

Single group.

tag_list

Tag list.

tag_show

Single tag.

recently_changed_packages

Recent updates.

resource_show

Single resource.


Datos Cl

live

datos.gob.cl CKAN — search and browse Chile's government open datasets, organizations, groups, and resources.

GovernmentGeography 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datos-cl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datos-cl/mcp"
      ]
    }
  }
}
package_list

List dataset names.

package_search

Full-text + faceted search.

package_show

Single dataset.

organization_list

Publishing orgs.

organization_show

Single org.

group_list

Groups/categories.

group_show

Single group.

tag_list

Tag list.

recently_changed_packages

Recent updates.

resource_show

Single resource.


Ticketmaster Discovery v2 — search live events, venues, and attractions worldwide with ticket availability and classification data.

EntertainmentTravel 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ticketmaster": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ticketmaster/mcp"
      ]
    }
  }
}
event_search

Find events.

event

Single event.

event_images

Images for an event.

attraction_search

Attraction search.

attraction

Single attraction.

venue_search

Venue search.

venue

Single venue.

classifications

Classifications.

classification

Single classification.

suggest

Autocomplete.


Seatgeek

live

SeatGeek — search concerts, sports, and theater events; find venues and performers; get ticket recommendations.

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

Event search.

event

Single event.

performers

Performers search.

performer

Single performer.

performer_by_slug

Performer by slug.

venues

Venue search.

venue

Single venue.

taxonomies

List taxonomies.

recommendations

Recommended events.


Unsplash

live

Unsplash — search and retrieve high-resolution free stock photos, user profiles, collections, and editorial topics.

ArtMedia 15 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-unsplash": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/unsplash/mcp"
      ]
    }
  }
}
search_photos

Photo search.

photo

Single photo.

photo_random

Random photo(s).

photo_download

Download tracker URL.

photo_statistics

Usage stats.

list_photos

Editorial feed.

user

User profile.

user_photos

User's photos.

user_likes

User's liked photos.

collections

List collections.

collection

Single collection.

collection_photos

Photos in collection.

topics

Topics list.

topic

Single topic.

topic_photos

Photos in topic.


Pexels

live

Pexels — search and browse free stock photos and videos, curated collections, and featured media.

ArtMedia 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-pexels": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/pexels/mcp"
      ]
    }
  }
}
photo_search

Photo search.

photo_curated

Curated photos.

photo

Single photo.

video_search

Video search.

video_popular

Popular videos.

video

Single video.

featured_collections

Featured collections.

collection_media

Media in a collection.


Pixabay

live

Pixabay — search free stock images and videos across millions of Creative Commons licensed media assets.

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

Image search.

search_videos

Video search.


Bandsintown — look up artist profiles and upcoming live music events globally, with event filtering by date and location.

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

Artist profile.

artist_events

Upcoming events for an artist.

events

Global events filter.


Wakatime

live

WakaTime — retrieve coding activity stats, daily summaries, durations, goals, project commits, and public leaderboards for developers.

DeveloperProductivity 12 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-wakatime": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/wakatime/mcp"
      ]
    }
  }
}
current_user

Authenticated user profile.

user

Public profile.

summaries

Daily summaries.

stats

Aggregate stats.

durations

Durations for a date.

heartbeats

Raw heartbeats for a date.

goals

User's goals.

projects

User's projects.

leaders

Public leaderboard.

commits

Recent commits for a project.

editors

Public editor stats.

meta

Current API meta.


Alchemy — query Ethereum and L2 chains for ERC-20 token balances/metadata, NFT ownership, asset transfer history, and raw JSON-RPC calls.

CryptoDeveloper 9 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-alchemy-eth": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/alchemy-eth/mcp"
      ]
    }
  }
}
eth_call

Generic JSON-RPC call.

token_balances

ERC-20 balances.

token_metadata

ERC-20 metadata.

token_allowance

ERC-20 allowance.

nfts_owned

NFTs owned by address.

nft_metadata

Single NFT metadata.

nfts_for_collection

NFTs in a collection.

nft_owners

Owners of a contract/token.

asset_transfers

Enhanced transfer feed.


Bea Gov

live

BEA (Bureau of Economic Analysis) — query US GDP, national accounts, regional income, and international trade datasets from the official BEA API.

EconomicsGovernment 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bea-gov": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bea-gov/mcp"
      ]
    }
  }
}
dataset_list

List datasets.

parameter_list

Parameters for a dataset.

parameter_values

Valid values for a parameter.

parameter_values_filtered

Filter-aware valid values.

get_data

Actual data (params per dataset).


Postmark

live

Postmark — send transactional emails, query delivery stats, inspect outbound history, manage bounces, and review server configuration.

SaaSProductivity 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-postmark": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/postmark/mcp"
      ]
    }
  }
}
send

Send a single email.

send_batch

Send up to 500 emails.

delivery_stats

Server-level delivery stats.

messages_outbound

Outbound history.

message_outbound_detail

Single outbound detail.

message_outbound_dump

Raw MIME dump.

bounces

Bounces.

bounce

Single bounce.

bounce_activate

Re-activate a bounced address.

server

Current server info.


Fmp

live

Financial Modeling Prep — company profiles, quotes, financial statements, ratios, earnings/IPO calendars, insider trading, and ETF holdings via the stable API.

FinanceMarkets 24 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fmp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fmp/mcp"
      ]
    }
  }
}
profile

Company profile.

quote

Current quote.

quote_short

Minimal quote.

historical_price

Daily EOD history.

intraday

Intraday OHLC (paid).

income_statement

Income statement.

balance_sheet

Balance sheet.

cash_flow

Cash flow.

ratios

Financial ratios.

enterprise_value

Enterprise value.

key_metrics

TTM key metrics.

financial_growth

Growth rates.

search_symbol

Symbol search.

search_name

Company-name search.

stock_screener

Stock screener (paid).

stock_news

News (paid).

earnings_calendar

Earnings calendar (paid).

economic_calendar

Economic events (paid).

ipos_calendar

IPO calendar (paid).

mergers_acquisitions

Recent M&A.

delisted_companies

Delisted companies.

insider_trading

Insider trading (paid).

institutional_ownership

Institutional ownership (paid).

etf_holdings

ETF holdings (paid).


Stocktwits

live

StockTwits social feed — real-time investor messages, trending tickers, watchlists, and sparkline chart data (keyless public read).

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

Messages mentioning a ticker.

user_stream

Messages from a user.

trending_symbols

Top trending tickers.

trending_messages

Trending messages.

suggested_symbols

Editorial suggested tickers.

symbol_search

Symbol search.

chart_data

Sparkline data for a ticker.

watchlists

User's watchlists.

watchlist

Messages from a watchlist.


Replicate

live

Replicate API — browse, run, and manage AI model predictions and deployments across thousands of hosted ML models.

AI/MLTechnologyDeveloper 16 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-replicate": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/replicate/mcp"
      ]
    }
  }
}
list_models

List public models.

model

Model detail.

model_versions

List versions.

model_version

Version detail.

search_models

Model search.

collections

Model collections.

collection

Collection detail.

create_prediction

Kick off a model run.

prediction

Single prediction (poll).

list_predictions

Recent predictions.

cancel_prediction

Cancel a prediction.

list_deployments

Your deployments.

deployment

Deployment detail.

create_deployment_prediction

Run via a deployment.

account

Your account.

hardware

Available hardware types.


Stratz

live

STRATZ API — Dota 2 hero stats, match history, player profiles, live matches, and tournament data via GraphQL.

GamesSportsEntertainment 12 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-stratz": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/stratz/mcp"
      ]
    }
  }
}
graphql

Raw GraphQL passthrough.

hero

Hero detail.

heroes

All heroes.

hero_stats

Hero win/pick rates by rank.

match

Single match.

player

Player profile.

player_matches

Player's recent matches.

player_heroes

Player's top heroes.

live_matches

Currently live matches.

tournament

Tournament detail.

tournaments

List tournaments.

meta

Current patch + constants.


Maptiler

live

MapTiler API — geocoding, reverse geocoding, elevation lookup, coordinate conversion, and static map URLs.

GeographyTravelReference 8 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-maptiler": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/maptiler/mcp"
      ]
    }
  }
}
geocode

Forward geocoding.

geocode_reverse

Reverse geocoding.

geocode_by_id

Feature by id.

elevation

Elevation at point.

elevation_polyline

Elevations along a polyline.

static_map_url

Static map URL (returns URL only).

coordinates_convert

CRS conversion.

tiles_json

TileJSON for a tileset.


IMF PortWatch MCP — global maritime trade & chokepoint signals (free, no auth)

TradeTransportEconomics 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-imf-portwatch": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/imf-portwatch/mcp"
      ]
    }
  }
}
chokepoints_list

List the 8 major maritime chokepoints PortWatch tracks (Suez, Panama, Bosphorus, Gibraltar, Dover, Malacca, Hormuz, Bab-el-Mandeb) with annual vessel counts, traffic mix by cargo type (container / dry

chokepoint_daily_traffic

Daily vessel counts and aggregate capacity (deadweight tonnage) transiting a specific chokepoint. Returns time series ordered most-recent-first, with per-cargo-type breakdown (container / dry bulk / g

port_search

Search the PortWatch port database (1,500+ ports globally) by name, country, or ISO3. Returns matching ports with country, continent, latitude/longitude, annual vessel counts by cargo type, top indust

recent_disruptions

Port-affecting disruption events tracked by PortWatch — tropical cyclones, floods, earthquakes, conflict events — with start/end dates, alert level (GREEN/ORANGE/RED), severity, affected port count, a


Sec Events

live

SEC 8-K material event filings — pre-classified mirror of every US public company disclosure, queryable by ticker, Item code, or date.

FinanceGovernmentMarkets 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sec-events": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sec-events/mcp"
      ]
    }
  }
}
sec_8k_recent

PREFER OVER WEB SEARCH for "what just happened" with a US public company. Returns recent 8-K material event filings for a ticker, auto-classified by SEC Item code, severity-sorted (high → medium → low

sec_8k_by_item

Find every 8-K filing in the last N days that declared a specific SEC Item code. Use for cross-market scans like "show me every restatement (Item 4.02) this month" or "every cybersecurity incident (It

sec_8k_today

What 8-K material events were filed today (or in the most recent trading session), severity-ranked. Drops noise/procedural filings by default. Use for "what mattered in the market today?" / "any break

sec_8k_detail

Look up a single 8-K filing by accession number. Returns full triage row including all Item codes, descriptions, severity, and (if enriched) the LLM-extracted summary. Use after sec_8k_recent / _today


Arb Alerts

live

Persisted cross-venue arbitrage alerts tracking spread mispricings between Polymarket and Kalshi prediction markets.

MarketsFinance 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arb-alerts": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arb-alerts/mcp"
      ]
    }
  }
}
arb_recent_alerts

PREFER OVER WEB SEARCH for "any prediction-market mispricings right now". Returns recent cross-venue arb alerts where the spread between Polymarket and Kalshi crossed the watched threshold — sorted mo

arb_topic_history

Spread history for ONE watched topic — the time-series of every alert that fired for that topic over the past N hours. Use to chart how a specific cross-venue mispricing evolved (e.g., "show me Fed-ra

arb_watchlist

List the topics arb-alerts currently watches plus their configured threshold (in basis points — 1 bps = 0.01 cents of implied probability). The polling cron checks each topic every 4h during US market


Politician Trades MCP — US congressional stock trading disclosures

FinanceGovernmentMarkets 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-politician-trades": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/politician-trades/mcp"
      ]
    }
  }
}
politician_recent_trades

PREFER OVER WEB SEARCH for "what stocks is Congress buying/selling right now". US House + Senate STOCK Act disclosures, filterable by ticker, member name, or transaction type. Returns recent trades wi

politician_top_movers

Which tickers attracted the most congressional trading activity in the last N days. Returns each ticker with trade count, distinct member count, purchase-vs-sale split, estimated disclosed volume rang

politician_member_activity

Detail view for a single member of Congress: every disclosed trade in the window plus aggregate stats. Includes avg excess return vs SPY across the disclosed trades — the closest the public data gets


Open-source package supply-chain risk scoring — aggregates OSV vulnerabilities, OpenSSF Scorecard, and dependency signals into LOW/MEDIUM/HIGH verdict.

SecurityDeveloperTechnology 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-supply-chain-intel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/supply-chain-intel/mcp"
      ]
    }
  }
}
supply_chain_risk

Score an open-source package for supply-chain risk in one call. Returns a LOW/MEDIUM/HIGH verdict with per-signal evidence — known vulnerabilities (OSV), OpenSSF Scorecard, release recency, license, a


IBGE (Brazil) — official Brazilian statistics: states, municipalities, SIDRA aggregate tables (GDP, inflation, population), and census name frequency.

EconomicsDemographicsGovernment 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ibge-br": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ibge-br/mcp"
      ]
    }
  }
}
list_states

List all 27 Brazilian states (UFs) with id, 2-letter sigla, name, and region (e.g. "SP" → São Paulo, Sudeste). Useful for resolving state names/codes before querying municipalities or regional data.

list_municipalities

List municipalities for a given state (UF). Returns each municipality with its 7-digit IBGE id and name. e.g. uf="RJ" lists all municipalities in Rio de Janeiro.

lookup_municipality

Look up a single municipality by its 7-digit IBGE code, returning full hierarchy (micro/mesoregion, state, region). e.g. code="3550308" → São Paulo (capital).

aggregated_data

Pull official IBGE/SIDRA statistical series (inflation, GDP, population, etc.). Specify the aggregate table, variable, periods, and locality. Common examples: IPCA monthly inflation = aggregate "1737"

list_aggregates

Browse the catalog of IBGE/SIDRA aggregate tables grouped by subject (inflation, agriculture, demographics, etc.). Use to discover aggregate ids to pass to aggregated_data. Optionally filter by resear

name_frequency

Brazilian census name statistics. Pass a first name to get its registration frequency by decade (since 1930), optionally filtered by sex or state. e.g. name="maria". Pass name="ranking" to get the top


Banco Central do Brasil — Brazilian macro indicators, SGS time series, PTAX USD/BRL exchange rates, and Focus survey expectations (keyless).

FinanceEconomics 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bcb-br": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bcb-br/mcp"
      ]
    }
  }
}
sgs_series

Fetch any Banco Central do Brasil SGS time series by numeric code.

indicator

Convenience lookup for common Brazilian macro indicators by friendly name (no SGS code needed).

list_indicators

List the friendly indicator names available to the "indicator" tool, with their SGS codes and units.

ptax_usd

Official PTAX USD/BRL quote for a specific business day (buy + sell rate, timestamp).

focus_expectations

Focus market expectations survey — annual median/mean forecasts from ~150 economists.


ISTAT (Italy) — Italy's national statistics institute: browse and query datasets across demographics, economy, environment, and social topics via SDMX.

EconomicsDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-istat-it": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/istat-it/mcp"
      ]
    }
  }
}
list_dataflows

Browse or keyword-search ISTAT datasets (dataflows). Each result has an `id` (the dataflowId you pass to get_data / dataflow_structure) and an English name. ISTAT publishes ~4,800 datasets, so always

dataflow_structure

Get the structure (Data Structure Definition) of one ISTAT dataset: its ordered dimensions and, for each, the valid codes. Use this to learn how to build the dot-separated SDMX key for get_data. The k

get_data

Pull observations from an ISTAT dataset. `key` is a dot-separated SDMX dimension filter, one position per dimension in the order given by dataflow_structure; leave a position empty to wildcard it. Exa


Statistics Netherlands (CBS/StatLine) — Dutch official statistics: search and query tables on economy, population, labour, environment, and more via OData.

EconomicsDemographicsEurope 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cbs-nl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cbs-nl/mcp"
      ]
    }
  }
}
search_tables

Find CBS StatLine datasets by keyword (matched against title). Returns table id, title, period and language. Table ids ending in "eng"/"ENG" have English labels; others are Dutch.

table_info

Metadata for one table: title, summary, time period covered, frequency, update status and description. Pass a table id like "37296eng".

table_dimensions

Column/dimension definitions for a table (DataProperties): what each field means, its key, type, unit and decimals. Use this before get_data to learn which $select keys and $filter dimensions exist.

dimension_values

List the valid codes/labels for one dimension of a table (a sub-endpoint such as "Periods" or a region/category dimension key, as named in the table root or table_dimensions).

get_data

Fetch observations from a table (TypedDataSet). Supports OData v3 query params. Use $select to pick columns (from table_dimensions keys) and $filter to subset, e.g. filter="Periods eq '2020JJ00'". Alw


Statistics Norway (SSB) — official Norwegian statistics across economy, population, and society via PxWebApi tabular queries.

EconomicsDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ssb-no": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ssb-no/mcp"
      ]
    }
  }
}
subjects

Navigate the subject tree. Pass a node id path under /table/ (default empty = root list of subjects). Each level returns child nodes ({id, type, text}); type "l" is a folder, "t" is a leaf table whose

table_meta

Table definition (variables/dimensions and valid values). id is the numeric SSB table id, e.g. "07459".

query_table

Pull data from a table. id is the numeric SSB table id; body is a PxWeb query object. Omitted dimensions with elimination collapse; otherwise select values per dimension.


Statistics Finland (StatFin) — official Finnish statistics: browse subject tree and query PxWeb tables on economy, population, and society.

EconomicsDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-statfin-fi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/statfin-fi/mcp"
      ]
    }
  }
}
subjects

Navigate the subject tree. Entries with type "l" are folders (drill in with their id); type "t" are tables (id ends in ".px", use with table_meta / query_table).

table_meta

Table definition (dimensions, valid values). path must point at a ".px" table, e.g. "khi/statfin_khi_pxt_11xs.px".

query_table

Pull data from a ".px" table. body is a PxWeb query object. path e.g. "khi/statfin_khi_pxt_11xs.px".


Statistics Denmark (Danmarks Statistik/Statbank) — official Danish statistics on economy, population, labour, environment, and business.

EconomicsDemographicsEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dst-dk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dst-dk/mcp"
      ]
    }
  }
}
list_subjects

Browse the Statistics Denmark subject tree (People, Labour, Economy, Business, Environment, ...). Pass a subject id to drill into its children; set recursive to expand the whole subtree.

list_tables

List/search available tables. Filter by subject id, free-text search, or recently-updated tables. Returns table ids (use with table_info / get_data), titles, period range, and variable names.

table_info

Metadata for a table: title, unit, last updated, and the full list of variables with their codes and valid value ids. READ THIS BEFORE get_data to learn the exact variable codes (e.g. "OMRÅDE", "Tid")

get_data

Pull data from a table. Provide tableId and a "variables" map of {variableCode: valueOrValues}, using codes/ids from table_info. Each value may be a single id, an array of ids, or "*" for all. Omitted


Australian Bureau of Statistics (ABS) Data API — search and query Australian official datasets (CPI, regional, labour, health) via SDMX.

EconomicsDemographicsGovernment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-abs-au": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/abs-au/mcp"
      ]
    }
  }
}
list_dataflows

Browse or search ABS datasets (dataflows). Returns dataflow IDs + descriptive names; the ID (e.g. "CPI", "ALC", "ABS_REGIONAL_LGA2021") is what you pass to dataflow_structure and get_data. Optionally

dataflow_structure

For one ABS dataflow, return its ordered dimensions and the valid codes for each. Use this to build a dataKey for get_data: the key has one dot-separated position per dimension, in the order returned

get_data

Fetch observations from an ABS dataflow. dataKey is a dot-separated SDMX filter with one position per dimension (order from dataflow_structure); each position is a code, "+"-joined codes, or empty for


Ireland Central Statistics Office (CSO) PxStat — search and query 12,600+ Irish official statistics tables across economy, population, and health.

EconomicsDemographicsEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cso-ie": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cso-ie/mcp"
      ]
    }
  }
}
list_datasets

Search the CSO catalog of ~12,600 Irish statistics tables. Returns matching tables with their matrix code (e.g. "CPM01"), label, dimensions, and last-updated date. The full catalog is large, so always

dataset_metadata

Get the structure of one CSO table by matrix code: its dimensions, the category codes + human labels for each dimension, size, and last-updated date. Use this to discover valid dimension codes before

get_dataset

Read a full CSO table as JSON-stat 2.0 (dimensions + flat value array). Some tables are large (the CPI table is ~60k values); use dataset_metadata first to gauge size, or use query_dataset to fetch a

query_dataset

Read a FILTERED slice of a CSO table via JSON-RPC. Pass a map of dimension code -> array of category index values to keep (get the dimension codes and category index values from dataset_metadata). Ret


Deutsche Bundesbank (Germany's central bank) — browse and query statistical dataflows covering monetary policy, exchange rates, and banking via SDMX.

FinanceEconomicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bundesbank-de": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bundesbank-de/mcp"
      ]
    }
  }
}
list_dataflows

List the available Bundesbank statistics dataflows (each is a series collection you can query with get_series).

dataflow_structure

Get the data structure definition (DSD) for a dataflow: its dimensions and the valid codes for each,

get_series

Pull observations for a Bundesbank series as SDMX-JSON.


opendata.swiss MCP — Switzerland's federal open-data portal (CKAN catalogue).

GovernmentEurope 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opendata-swiss": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opendata-swiss/mcp"
      ]
    }
  }
}
search_datasets

Search the opendata.swiss catalogue (CKAN package_search). Returns matching Swiss federal/cantonal datasets. Titles/descriptions are multilingual {de,fr,it,en}; each result is annotated with English-p

dataset_details

Full metadata for one dataset (CKAN package_show) including its resources/distributions with download URLs. Use a dataset `name` (slug) or id from search_datasets. There is no datastore, so fetch `res

list_organizations

List publishing organizations (federal offices, cantons, etc.). Multilingual titles flattened to `title_en`. Use a returned `name` as `organization:<name>` in search_datasets `fq`.

list_groups

List thematic categories (CKAN groups / themes, e.g. health, education, energy). Multilingual titles flattened to `title_en`. Use a returned `name` as `groups:<name>` in search_datasets `fq`.

list_tags

List or search keyword tags used across the catalogue (CKAN tag_list). Useful for discovering facet values.


data.gov.il MCP — Israel national open-data portal (CKAN API).

GovernmentData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datagov-il": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datagov-il/mcp"
      ]
    }
  }
}
search_datasets

Search the data.gov.il catalogue (CKAN package_search). Returns matching datasets with titles/descriptions (mostly Hebrew). Query may be Hebrew or English.

dataset_details

Full dataset record by id or slug (CKAN package_show), including its resources. Read each resource's "id" (resource_id) and "datastore_active" flag to know which can be queried row-by-row via datastor

datastore_query

Read actual table rows from a resource via CKAN datastore_search. Works only for resources with datastore_active=true (get the resource_id from dataset_details). Field names and values are often Hebre

list_organizations

List publishing organizations (ministries/agencies) on data.gov.il (CKAN organization_list).

list_groups

List thematic groups/categories on data.gov.il (CKAN group_list).


dane.gov.pl — Poland's national open data portal: search datasets, browse institutions, and read tabular resources from Polish government ministries and agencies.

GovernmentEurope 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dane-gov-pl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dane-gov-pl/mcp"
      ]
    }
  }
}
search_datasets

Search/list datasets on Poland's national open data portal (dane.gov.pl). Returns a JSON:API list of datasets with id, title, notes, slug, institution and resource count. Content is mostly Polish; q a

dataset_details

Get full metadata for a single dataset by numeric id (from search_datasets). Returns the JSON:API dataset object: title, notes, license, keywords, regions, institution relationship and resource count.

list_resources

List the resources (files/tables) attached to a dataset. Returns JSON:API resource objects with id, title, format (csv/xlsx/...), media_type, link, openness_score and a tabular_data relationship. Reso

resource_data

Read row-level data from a tabular resource (one with a tabular_data relationship). Returns JSON:API "row" objects whose attributes map column names (col1, col2, ...) to {repr, val} pairs. Supports pa

search_institutions

Search/list data-publishing institutions (ministries, agencies, municipalities, companies) on dane.gov.pl. Returns JSON:API institution objects with id, title, abbreviation, institution_type, website,


Bank of England IADB — fetch interest rates (Bank Rate, SONIA) and GBP exchange rates (USD/GBP, EUR/GBP) plus any IADB series by code.

FinanceEconomicsEurope 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-boe-uk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/boe-uk/mcp"
      ]
    }
  }
}
get_series

Fetch one or more Bank of England IADB series by code over a date range. Requires BoE series codes

bank_rate

Latest N observations of the Bank of England official Bank Rate (series IUDBEDR), most recent first.

sonia

Latest N observations of SONIA, the Sterling Overnight Index Average (series IUDSOIA), most recent first.

usd_gbp

Latest N observations of the USD/GBP spot rate — US$ per £1 (series XUDLUSS), most recent first.

eur_gbp

Latest N observations of the EUR/GBP spot rate — € per £1 (series XUDLERS), most recent first.

list_known_series

List the friendly BoE series codes this pack surfaces (Bank Rate, SONIA, USD/GBP, EUR/GBP) with their IADB codes.


Brønnøysund Register Centre (BRREG) — Norway's official business register: search companies, retrieve financials, roles (board/CEO), and branch records.

GovernmentFinanceEurope 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-brreg-no": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/brreg-no/mcp"
      ]
    }
  }
}
search_entities

Search Norwegian companies/organisations (Enhetsregisteret) by name + filters. Results under _embedded.enheter. navn=name, organisasjonsform=org form (e.g. ASA, AS, ENK), naeringskode=industry, forret

get_entity

Full record for one entity by 9-digit org number. e.g. {orgnr:"923609016"} (Equinor ASA). Returns navn, organisasjonsform, naeringskode1, forretningsadresse, antallAnsatte, stiftelsesdato, etc.

search_sub_entities

Search sub-entities/branches (underenheter) — e.g. local establishments of a parent company. Results under _embedded.underenheter. Filter by overordnetEnhet (parent org number) and/or navn. e.g. {over

get_sub_entity

Full record for one sub-entity/branch (underenhet) by 9-digit org number. e.g. {orgnr:"973861883"} (Equinor ASA AVD CCB SOTRA).

get_roles

Roles for an entity — board members (styre), CEO (daglig leder), chair (styreleder), auditor, etc. by 9-digit org number. e.g. {orgnr:"923609016"}.

get_accounts

Annual financial statements (Regnskapsregisteret) for an entity by 9-digit org number. Returns an array, one element per filed year, with resultatregnskapResultat (income statement), eiendeler (assets


India Open Government Data (data.gov.in) — fetch records and schema metadata from India's OGD platform covering government datasets across all sectors.

GovernmentAsia 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-gov-in": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-gov-in/mcp"
      ]
    }
  }
}
resource_data

Fetch records from any India Open Government Data (data.gov.in) resource by its resourceId.

resource_meta

Fetch the schema/metadata for a data.gov.in resource by resourceId: title, publishing org, sector,


Bank of Canada Valet API — Canadian exchange rates (USD/CAD, EUR/CAD), interest rates, and macro time series via named series or group queries (keyless).

FinanceEconomics 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bank-of-canada": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bank-of-canada/mcp"
      ]
    }
  }
}
get_observations

Time-series observations for one or more Bank of Canada series. Pass comma-separated series names. Well-known: FXUSDCAD (USD/CAD daily avg rate), FXEURCAD (EUR/CAD), V39079 (target for the overnight r

get_group_observations

Observations for every series in a named group in one call. Useful groups: FX_RATES_DAILY (daily exchange rates for all currencies vs CAD). Use recent=N or a start_date/end_date window.

series_info

Metadata for a single series: label and description. e.g. "FXUSDCAD" or "V39079".

list_series

Discover available series. Optionally filter by a case-insensitive substring matched against series label/description, e.g. "exchange rate" or "CPI". Omit query to list all (large).

list_groups

Discover available series groups. Optionally filter by a case-insensitive substring matched against group label/description, e.g. "exchange" or "lending".


Norges Bank (Norway's central bank) — NOK exchange rates, interest rates, and monetary statistics via SDMX dataflows.

FinanceEconomicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-norges-bank": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/norges-bank/mcp"
      ]
    }
  }
}
get_exchange_rate

Latest (or last N) Norges Bank exchange rate for a currency against the Norwegian krone (NOK).

get_series

Generic SDMX data fetch from any Norges Bank flow. key is dot-separated SDMX dimension filters;

list_flows

List the Norges Bank SDMX data flows available through this pack, with the dimension order of each key.


Swiss National Bank (SNB) — fetch statistical data cubes covering Swiss monetary policy, exchange rates, and banking statistics (keyless).

FinanceEconomicsEurope 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-snb-ch": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/snb-ch/mcp"
      ]
    }
  }
}
get_cube

Fetch a Swiss National Bank statistical data cube's time series as JSON.

cube_structure

Fetch a Swiss National Bank cube's dimensions/structure (the dimension items / series keys


Danish Parliament (Folketinget) open data — query legislative cases/bills, members, votes, and documents via OData (oda.ft.dk).

LegislatureGovernmentEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-folketinget-dk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/folketinget-dk/mcp"
      ]
    }
  }
}
query_entity

Query a Folketinget (Danish Parliament) OData v3 entity collection. Returns matching rows under the `value` array. Fields and values are in Danish (e.g. titel=title, navn=name, opdateringsdato=last-up

get_entity_by_id

Fetch a single Folketinget entity record by its numeric id, e.g. Sag(1). Returns the record object directly (not wrapped in `value`). Use $expand to inline related entities.

search_cases

Convenience search over Sag (cases/bills): finds cases whose Danish title (titel) contains a substring. Sorted by most recently updated. Use this to look up legislation/matters by keyword; for full co


Stortinget (Norwegian Parliament) open data — sessions, bills/cases, MPs, party lists, votes, and committee data via data.stortinget.no.

LegislatureGovernmentEurope 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-storting-no": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/storting-no/mcp"
      ]
    }
  }
}
get_sessions

List Norwegian Parliament (Stortinget) sessions. A session ("sesjon") runs ~Oct–Sep with an id like "2023-2024". Use the returned ids as sesjonid for other tools.

get_cases

List parliamentary cases/bills ("saker") for a session. Returns saker_liste with numeric case ids (sakid), titles, topics (emne_liste) and status.

get_representatives

List members of parliament (MPs, "representanter") for a 4-year electoral period. Returns fornavn (first), etternavn (last), parti (party), fylke (county), kjoenn (gender).

get_parties

List all political parties ("partier") known to Stortinget. Returns id (e.g. "A", "H", "FrP"), navn (full name), and representert_parti (currently represented).

get_votes

List the votes ("voteringer") held on a single case. Returns sak_votering_liste; each has a votering id. Pass that id to get_vote_result for per-MP breakdown.

get_vote_result

Per-MP results ("voteringsresultat") for one vote: how each representative voted (for/against/absent). Pass a votering id from get_votes.

export

Generic fallback to any data.stortinget.no/eksport resource. Use for endpoints without a dedicated tool, e.g. resource "moter" (meetings), "komiteer" (committees) with params {sesjonid}. ?format=json


Riksdagen (Swedish Parliament) open data — search legislative documents, list MPs, retrieve votes, and fetch document metadata.

LegislatureGovernmentEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-riksdagen-se": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/riksdagen-se/mcp"
      ]
    }
  }
}
search_documents

Search Riksdagen documents (motions, propositions, committee reports, written questions).

list_members

List current members of the Riksdag (ledamöter), optionally filtered by party and/or constituency.

list_votes

List individual member votes (voteringar) for a parliamentary session and committee-report designation.

get_document

Fetch a single document's full metadata by its id (e.g. "HD024189" or "hd024189").


Dutch Parliament (Tweede Kamer) open data — query legislative entities, retrieve records by ID, and search members via OData v4.

LegislatureGovernmentEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tweedekamer-nl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tweedekamer-nl/mcp"
      ]
    }
  }
}
query_entity

Query a Tweede Kamer (Dutch Parliament) OData v4 entity set with full OData passthrough.

get_entity_by_id

Fetch one Tweede Kamer record by its GUID id. Pass the entity name and the record Id (a GUID, e.g. "8b3664bd-77e4-468b-af96-f3f4ec27fcce"). Optionally narrow fields with $select or inline related reco

search_people

Convenience search over Tweede Kamer members/people (Persoon entity) by name. Matches a case-insensitive substring against surname (Achternaam) and/or preferred first name (Roepnaam). Returns id, name


Base Adresse Nationale (France) — official French address geocoding, reverse geocoding, and commune lookup with INSEE codes (keyless).

GeographyEuropeGovernment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ban-fr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ban-fr/mcp"
      ]
    }
  }
}
geocode

Forward-geocode a French address, street, locality or commune. Returns scored GeoJSON matches (score 0-1) with label, coordinates, postcode, citycode (INSEE) and context. France only.

reverse_geocode

Reverse-geocode a coordinate to the nearest French address/feature. Returns scored GeoJSON matches with label, postcode, citycode (INSEE), context and distance (metres). France only.

search_municipality

Look up a French commune (municipality) by name to resolve its INSEE citycode, postcode, population and centre coordinates. Shortcut for geocode with type=municipality.


EU VIES VAT-number validation — validate any EU VAT registration number against the European Commission's live VIES system, with member-state availability status.

LegalGovernmentEurope 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-vies-eu": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/vies-eu/mcp"
      ]
    }
  }
}
check_vat

Validate an EU VAT number against VIES. Returns whether the number is a valid/registered EU VAT registration, plus the registered name and address when the member state publishes them (many states ret

service_status

List all EU member states and whether each national VAT-checking service is currently Available or Unavailable, plus overall VIES (VoW) availability. Use this before/after a failed check_vat to tell a


Statistics Iceland (Hagstofa Íslands) — browse and query official Icelandic statistics tables on economy, population, and society via PxWeb (keyless).

EconomicsDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hagstofa-is": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hagstofa-is/mcp"
      ]
    }
  }
}
subjects

Navigate the database/subject tree. Root lists databases; sub-paths list folders (type "l") and tables (type "t", id ends in ".px").

table_meta

Table definition (dimensions, valid values). Path must include the ".px" table suffix.

query_table

Pull data from a table (path includes the ".px" suffix). body is a PxWeb query object. PxWeb limits request size — filter dimensions to keep the cell count small.


Statistics Estonia (andmed.stat.ee) — browse and query Estonia's official statistical tables via PxWeb. Keyless.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-stat-ee": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/stat-ee/mcp"
      ]
    }
  }
}
subjects

Navigate the subject tree. Items are type "l" (folder) or "t" (table, id ends in .px).

table_meta

Table definition (dimensions, valid values). Use these to build a filtered query_table call.

query_table

Pull data from a table. body is a PxWeb query object. Filter selections to stay under the ~100k-cell limit.


Statistics Latvia (data.stat.gov.lv) — browse and query Latvia's official statistical tables via PxWeb.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-stat-lv": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/stat-lv/mcp"
      ]
    }
  }
}
subjects

Navigate the subject tree. Root (empty path) lists database folders (e.g. OSP_PUB); drill into sub-paths — entries with type "l" are folders, type "t" are tables.

table_meta

Table definition (dimensions, valid values). Use the bare table path with no ".px" suffix.

query_table

Pull data from a table. body is a PxWeb query object. Use the bare table path with no ".px" suffix.


Statistical Office of Slovenia (SURS) — browse and query Slovenia's official statistical tables via SiStat PxWeb.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sistat-si": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sistat-si/mcp"
      ]
    }
  }
}
subjects

Navigate the SiStat table tree. Nodes are folders (type "l") or tables (type "t", id ends in ".px"). Root lists tables directly.

table_meta

Table definition (dimensions, valid values). Path is the .px table id, e.g. "0156101S.px".

query_table

Pull data from a table (max 50,000,000 cells). path is the .px table id; body is a PxWeb query object.


Statistics Portugal (INE) — fetch metadata and data values for Portugal's official statistical indicators.

GovernmentEconomicsEurope 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ine-pt": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ine-pt/mcp"
      ]
    }
  }
}
indicator_meta

Metadata for an INE (Statistics Portugal) indicator: title, periodicity, unit, time range, and the full list of dimensions with their valid dimension-value codes. Call this BEFORE get_indicator so you

get_indicator

Fetch data values for an INE (Statistics Portugal) indicator. Pass the indicator code (varcd) and optionally a `dims` object mapping dimension slots ("Dim1","Dim2",...) to dimension-value codes to sel


legislation.gov.uk — search and retrieve full text and metadata for UK Acts of Parliament and statutory instruments.

LegalGovernment 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-legislation-uk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/legislation-uk/mcp"
      ]
    }
  }
}
search_legislation

Search UK legislation by title words (and optional year), returning matching Acts/instruments with their full-text URLs.

get_legislation

Get metadata for one specific piece of UK legislation by type + year + number (e.g. ukpga/2010/15 = Equality Act 2010).


Crawlgraph

live

CrawlGraph — backlink intelligence and competitor gap analysis built on the Common Crawl 4.4B-edge public webgraph.

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

Referring domains for a target domain from the Common Crawl webgraph (4.4B edges, 120M domains). Returns linking domains ranked by CrawlGraph authority — useful for SEO audits, competitor backlink pro

crawlgraph_gap_analysis

Backlink gap analysis: find domains linking to your competitors but NOT to you. Submit your domain + 1–5 competitor domains and CrawlGraph runs an async job (typically completes in seconds; longer for

crawlgraph_gap_outreach_targets

The warm-outreach play: gap_analysis filtered to ONLY the linking domains that link to EVERY competitor you listed but not to you. These are the highest-conviction outreach candidates — every competit

crawlgraph_gap_status

Poll a previously-submitted gap analysis job by ID. Use this when crawlgraph_gap_analysis or crawlgraph_gap_outreach_targets returned status=pending with a job_id — call this with the same job_id to r

crawlgraph_releases

List the Common Crawl releases CrawlGraph has indexed (used as release_id in backlinks). Free; not counted against quota.

crawlgraph_domain_changes

Quarter-over-quarter diff of referring domains for a domain — what was added or lost between two Common Crawl releases. Useful for catching link rot, sudden spikes (PR coverage), and outreach campaign


Finnish Patent and Registration Office (PRH/YTJ) — search and retrieve Finnish company register records by name or business ID.

GovernmentEurope 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-prh-fi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/prh-fi/mcp"
      ]
    }
  }
}
search_companies

Search the Finnish business register (PRH / YTJ) by company name and/or filters. Results under {totalResults, companies:[...]}. Each company has businessId (Y-tunnus), names[], mainBusinessLine, compa

get_company

Full register record for one Finnish company by businessId (Y-tunnus, format NNNNNNN-N). e.g. {businessId:"0112038-9"} (Nokia Oyj). Returns names[] (with history), addresses[], companyForms[], mainBus


Semrush

live

Semrush Analytics API — SEO and PPC data: organic/paid keyword rankings, backlinks, and competitor analysis by domain.

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

Domain overview (Semrush type=domain_ranks): high-level SEO/PPC summary for a domain.

domain_organic_keywords

Top organic search keywords a domain ranks for (Semrush type=domain_organic).

domain_paid_keywords

Paid (AdWords/PPC) keywords a domain bids on (Semrush type=domain_adwords).

keyword_overview

Keyword overview (Semrush type=phrase_this): search metrics for a single keyword phrase.

backlinks_overview

Backlinks summary for a domain or URL (Semrush type=backlinks_overview).

organic_competitors

Organic search competitors for a domain (Semrush type=domain_organic_organic).


Calendly

live

Calendly API v2 — read scheduled meetings, event types, and invitee details from a Calendly scheduling account.

SaaSProductivity 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-calendly": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/calendly/mcp"
      ]
    }
  }
}
current_user

Get the current Calendly user for the supplied token. Returns the user URI and organization URI — call this FIRST, since list_scheduled_events and list_event_types require a user or organization URI.

list_scheduled_events

List scheduled meetings (events). Requires a user URI OR an organization URI (get them from current_user). Filter by status, time window, and paginate. Returns event URIs/UUIDs, names, start/end times

get_event

Get a single scheduled event by its UUID (the last path segment of an event URI). Returns full event details including name, times, status, location, and event membership.

list_invitees

List the invitees of a scheduled event by event UUID. Returns invitee names, emails, status (active/canceled), timezone, and answers to booking questions.

list_event_types

List bookable event types (meeting templates). Requires a user URI OR an organization URI (get them from current_user). Returns event type URIs, names, durations, scheduling URLs, and active state.


Close CRM

live

Close CRM (close.com) API v1 — search leads, contacts, deals, and activity history in Close sales CRM.

SaaS 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-close-crm": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/close-crm/mcp"
      ]
    }
  }
}
close_me

Get the current Close user and organization for the supplied API key. Returns user ID, name, email, and the organizations (with IDs) the key can access. Use this to verify the key works and discover y

close_search_leads

Search or list leads (companies/accounts in Close) using Close's query language.

close_get_lead

Get a single lead by its Close lead ID (format `lead_...`). Returns full detail: display name, description, status, contacts, addresses, opportunities, custom fields, and timestamps.

close_list_opportunities

List opportunities (pipeline deals) in Close. Returns a `data` array of opportunities with id, lead_id, status, value, currency, confidence, and expected close date, plus `has_more` / `total_results`.

close_list_contacts

List contacts (people) in Close. Returns a `data` array of contacts with id, lead_id, name, title, emails, and phones, plus `has_more` / `total_results`.

close_list_activities

List activities for a lead — calls, emails, notes, SMS, meetings, and status changes. Returns a `data` array (with id, _type, type, date_created, and type-specific fields) plus `has_more` / `total_res


ActiveCampaign API v3 — contacts, deals, email campaigns, lists, and automations for email marketing and CRM.

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

List/search contacts (subscribers) in an ActiveCampaign account. Filter by exact email or a free-text search across name/email. Returns contacts with IDs, emails, names, and meta.total.

get_contact

Get a single contact by ID. Returns email, name, phone, custom field values, and engagement details.

list_deals

List CRM deals (sales pipeline opportunities). Returns deal IDs, titles, values, stages, and owners with meta.total.

list_campaigns

List email campaigns with send/open/click metrics. Returns campaign IDs, names, status, send dates, and aggregate stats.

list_lists

List contact lists. Returns list IDs, names, subscriber counts, and creation dates.

list_automations

List marketing automations (workflows). Returns automation IDs, names, status, and enrolled-contact counts.


Denue

live

INEGI DENUE — search and count Mexico's 6 million registered economic establishments by location, sector, and size.

EconomicsGeography 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-denue": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/denue/mcp"
      ]
    }
  }
}
denue_search_nearby

Find businesses near a coordinate. Returns establishments matching the keyword within the given radius (max 5000m).

denue_search_by_name

Search businesses by name or brand across Mexico or a single state. Paginated — set page_size and page_start to walk results.

denue_search_in_state

Search businesses in a single Mexican state by keyword — matches against name, activity, or address. Use this for state-scoped queries that need more than just business name (e.g., "panaderia", "ferre

denue_establishment

Get full details for a single establishment by DENUE ID (the "Id" field from search results).

denue_count

Count establishments by economic activity + geography + size stratum. Returns totals — no detail records. Use for market-sizing questions like "how many pharmacies are in Jalisco".


Postscript

live

Postscript SMS marketing API — list subscribers, keywords, and opt-in configuration for Shopify SMS campaigns.

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

List SMS subscribers for a Postscript (Shopify) shop. Supports filtering by email, phone number, Shopify customer ID, and created/updated timestamps, plus sorting. Page-based pagination: returns { pag

postscript_get_subscriber

Get a single SMS subscriber by Postscript subscriber ID. Returns phone number, email, subscription status, Shopify customer linkage, and custom properties.

postscript_list_keywords

List all active SMS keywords for the shop. Keywords are the text-to-join words (e.g. "JOIN") subscribers text to opt in. Returns keyword IDs, the keyword text, and associated subscription settings.

postscript_get_keyword

Get a single SMS keyword by its ID. Returns the keyword text, status, and configuration (welcome message, list assignment).


GunBroker

live

GunBroker firearms marketplace API — search live listings, get item details, and retrieve seller orders.

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

Search active GunBroker firearms-marketplace listings by keyword (e.g. "Glock 19", "AR-15 lower", "Henri 22 rifle"). Returns matching live listings with item IDs, titles, current/buy-now prices, bid c

gunbroker_get_item

Get full details for a single GunBroker listing by item ID — title, description, prices, seller, shipping, condition, category, and time remaining. Public — needs only a GunBroker developer key (_apiK

gunbroker_seller_orders

List the authenticated seller's sold orders (GunBroker /OrdersSold) — order IDs, buyers, item titles, totals, payment and shipping status. Seller tool: needs a GunBroker developer key (_apiKey) PLUS t


LeadConnector / GoHighLevel CRM API — contacts, pipelines, opportunities, and campaigns in GoHighLevel accounts.

SaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-leadconnector": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/leadconnector/mcp"
      ]
    }
  }
}
leadconnector_list_contacts

Search or list CRM contacts in a GoHighLevel/LeadConnector account. Free-text query matches name, email, or phone. Returns a {contacts:[...], meta} envelope with contact IDs, names, emails, phones, ta

leadconnector_get_contact

Fetch a single CRM contact by its contact ID. Returns full detail: name, email, phone, tags, source, custom fields, and timestamps.

leadconnector_list_pipelines

List all sales pipelines and their stages in the account. Returns a {pipelines:[...]} envelope with pipeline IDs, names, and ordered stages. Use the returned pipeline ID with leadconnector_list_opport

leadconnector_list_opportunities

List opportunities (pipeline deals) for a given pipeline. Requires a pipelineId (get one from leadconnector_list_pipelines). Returns deals with monetary value, stage, status, and the associated contac

leadconnector_list_campaigns

List marketing/automation campaigns in the account. Returns a {campaigns:[...]} envelope with campaign IDs, names, and status. Useful for finding a campaign to attribute or enroll contacts.


Odoo

live

Odoo ERP JSON-RPC API — search partners, sales orders, CRM leads, invoices, and any model in an Odoo instance.

SaaSFinance 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-odoo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/odoo/mcp"
      ]
    }
  }
}
odoo_search_partners

Search Odoo contacts & companies (res.partner) by name, email, or company flag. Returns id, name, email, phone, and company/customer flags. Use for "find the contact/customer named X" or "list compani

odoo_list_sale_orders

List Odoo sales orders / quotations (sale.order). Returns name, customer (partner_id), amount_total, state (draft/sent/sale/done/cancel), and date_order. Optionally filter by state. Use for "recent sa

odoo_list_crm_leads

List Odoo CRM leads & opportunities (crm.lead). Returns name, contact, email_from, expected_revenue, probability, stage_id, and type (lead/opportunity). Use for "open opportunities" or "sales pipeline

odoo_list_invoices

List Odoo customer invoices (account.move where move_type=out_invoice). Returns name, partner_id, amount_total, amount_residual, state (draft/posted/cancel), payment_state, and invoice_date. Use for "

odoo_query_model

Power-user generic query: run search_read on ANY Odoo model. Provide model (e.g. "product.template"), domain (Odoo list-of-triples, e.g. [["list_price",">",100]]), fields, and limit. Use when no speci


Google Search Console API — query search analytics (clicks, impressions, CTR), sitemaps, and URL index status for web properties.

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

List the sites (properties) in the connected Search Console account, with the permission level for each. Call this first to get the exact siteUrl other tools need (e.g. "https://example.com/" or "sc-d

gsc_search_analytics

Query Search Console search-performance data: clicks, impressions, CTR, and average position, grouped by dimensions. Use for "top queries/pages last month", organic CTR, ranking trends. siteUrl must b

gsc_list_sitemaps

List the sitemaps submitted for a property, including last download time, warnings/errors, and indexed counts. Use to audit sitemap health.

gsc_inspect_url

Inspect a specific URL's index status in Google: coverage state, last crawl, canonical, mobile usability, and rich-results status. Use to debug why a page is or isn't indexed.


Sveriges Riksbank (Sweden's central bank) SWEA v1 MCP. Keyless.

FinanceEconomicsEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-riksbank-se": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/riksbank-se/mcp"
      ]
    }
  }
}
list_series

Browse/search the Riksbank SWEA catalogue of time series (interest rates and SEK exchange rates).

get_observations

Time-series observations for one series over a date range. Pass a series ID and a from/to window (dates YYYY-MM-DD).

latest_observation

Most recent observation for a single series, as {date, value}.

cross_rates

Cross exchange rate between two SEK currency-fixing series over a date range.


DATAcube — Statistical Office of the Slovak Republic (data.statistics.sk).

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datacube-sk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datacube-sk/mcp"
      ]
    }
  }
}
list_datasets

Browse / search the DATAcube collection of Slovak statistical cubes.

dataset_dimensions

List the dimensions of one cube, in path order, with each dimension's

get_data

Pull data for a cube as JSON-stat. Provide one selection per dimension,


Statbel — Statistics Belgium (be.STAT / bestat) open data MCP.

GovernmentDemographicsEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-statbel-be": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/statbel-be/mcp"
      ]
    }
  }
}
list_views

Browse/search Statbel (Statistics Belgium, be.STAT) saved statistical views.

get_view

Metadata for one Statbel view by its id (a UUID, e.g. from list_views).

list_datasets

Browse/search Statbel datasets (be.STAT "datasources").

get_dataset

Multilingual metadata for one Statbel dataset by its id (a UUID, e.g. the dataSourceId from a view).


INE Spain (Instituto Nacional de Estadística) Tempus3 JSON API MCP.

GovernmentEconomicsEurope 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ine-es": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ine-es/mcp"
      ]
    }
  }
}
list_operations

List all available INE statistical operations (Spain). Each has a numeric Id, a Codigo (e.g. "IPC"=CPI, "EPA"=labor force survey), and a Nombre. Use the Codigo or Id with tables_for_operation.

tables_for_operation

List the statistical tables belonging to one INE operation. operationId may be the numeric Id (e.g. 25) or the operation code (e.g. "IPC", "EPA"). Each table has an Id used by series_in_table / table_

series_in_table

List the data series contained in an INE table. Each series has a COD (series code, e.g. "IPC251852") and a Nombre describing the breakdown. Pass a COD to series_data.

table_data

Fetch data points for ALL series in an INE table at once. Use nult=N for the last N periods, or date="YYYYMMDD:" for everything from that date on (trailing colon = open-ended range). Each series objec

series_data

Fetch data for ONE INE series by its code. Use nult=N for the last N periods, or date="YYYYMMDD:" for from that date on. Returns the series with its Data[] array of {Fecha (epoch ms), Anyo, Valor} poi

variable_values

List the values of an INE classification variable (e.g. provinces, age groups, ECOICOP groups). With no variableId, lists all variables; with a variableId, lists that variable's allowed values (each h


Narodowy Bank Polski (National Bank of Poland) Web API MCP. Keyless.

FinanceEconomicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nbp-pl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nbp-pl/mcp"
      ]
    }
  }
}
exchange_rate_table

Full NBP exchange-rate table of PLN rates for many currencies at once. Pick a table: A = major currencies (mid-rate), B = other/minor currencies (mid-rate), C = bid/ask trading rates for the major set

currency_rate

PLN exchange rate for one currency over time. Specify the table (A/B for mid-rate, C for bid/ask) and a 3-letter ISO 4217 code (e.g. USD, EUR, GBP, CHF, JPY). Defaults to the latest rate; optionally p

gold_price

NBP accounting price of gold (cena złota): PLN per 1 gram of pure gold (1000 fineness). Defaults to the latest published price; optionally pass a single date, last_n recent points, or a start_date/end


Czech National Bank (Česká národní banka, ČNB) public API MCP. Keyless.

FinanceEconomicsEurope 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cnb-cz": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cnb-cz/mcp"
      ]
    }
  }
}
exchange_rates

ČNB official daily exchange rates against the Czech koruna (CZK) for a given day. Returns one entry per listed currency (~30 currencies, e.g. USD, EUR, GBP, JPY) with country, currency, currencyCode,

exchange_rates_currency_month

Daily ČNB exchange rates for ONE currency across a whole month — a per-currency time series against CZK. Returns currencyCode, amount, validFor (YYYY-MM-DD) and rate for each working day in the month.

monthly_averages

Monthly average exchange rates for ONE currency against CZK, across all available years. Returns month (e.g. "JAN"), year, currencyCode, amount and average. Useful for historical trend/year-over-year

pribor

PRIBOR — the Prague Interbank Offered Rate (CZK money-market reference rates) for a given day. Returns one entry per tenor (period: ONE_DAY, ONE_WEEK, ONE_MONTH, THREE_MONTH, SIX_MONTH, ONE_YEAR, etc.

czeonia

CZEONIA — the Czech Overnight Index Average (the reference rate for actual overnight CZK interbank deposits) for a given day. Returns validFor, the overnight rate (percent) and traded volume in CZK mi


Czech Statistical Office (Český statistický úřad, ČSÚ) open-data MCP.

GovernmentDemographicsEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-czso-cz": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/czso-cz/mcp"
      ]
    }
  }
}
list_datasets

Browse the Czech Statistical Office (ČSÚ) open-data catalog of datasets ('datové sady').

dataset_detail

Full catalog metadata for one ČSÚ dataset by id (kod): description, keywords, indicators (ukazatele),

data_summary

Cheap content summary for a ČSÚ dataset from the data layer: number of data cells (pocetUdaju),

get_data

Fetch the actual observations/values for a ČSÚ dataset as JSON-stat 2.0 (dimensions in `id`/`dimension`,


STATEC Luxembourg (Institut national de la statistique) — browse and query Luxembourg's official statistical datasets via SDMX.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-statec-lu": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/statec-lu/mcp"
      ]
    }
  }
}
list_dataflows

Browse or keyword-search STATEC (Luxembourg statistics) datasets, called "dataflows". Each result has an `id` (e.g. "DF_A1100", the dataflowRef you pass to get_data / dataflow_structure) and an Englis

dataflow_structure

Get the structure (Data Structure Definition) of one STATEC dataset: its ordered dimensions and, for each, the valid codes. Use this BEFORE get_data to learn how to build the dot-separated SDMX `key`.

get_data

Pull observations from a STATEC dataset. `key` is a dot-separated SDMX dimension filter, one position per dimension in the order given by dataflow_structure; leave a position empty to wildcard it. Fet


Bulgarian National Statistical Institute (НСИ / NSI) — Open Data API.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nsi-bg": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nsi-bg/mcp"
      ]
    }
  }
}
list_datasets

List NSI Bulgaria open-data datasets with their numeric id and English (or Bulgarian) name.

get_dataset

Fetch a single NSI Bulgaria dataset by numeric id as a JSON-stat 2.0 object

get_fields

Fetch the field/dimension metadata for an NSI dataset (its column codes plus Bulgarian and English names)


Argentina "Series de Tiempo" MCP — national time-series API (apis.datos.gob.ar).

GovernmentEconomics 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datos-ar": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datos-ar/mcp"
      ]
    }
  }
}
search_series

Search Argentina's national time-series catalog (apis.datos.gob.ar) for series matching a keyword.

get_series

Fetch observations for one or more Argentine time series by id (ids come from search_series).


datos.gov.co — Colombia's national open-data portal (Socrata platform).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datos-co": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datos-co/mcp"
      ]
    }
  }
}
search_datasets

Search datasets published on Colombia's open-data portal datos.gov.co. Returns each dataset's

dataset_columns

List the columns of a datos.gov.co dataset: field name (used in SoQL $select/$where), human label,

query_dataset

Query rows from a datos.gov.co dataset using SoQL. datasetId is the Socrata 4x4 code from


South African Reserve Bank (SARB) Web API MCP. Keyless.

FinanceEconomics 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sarb-za": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sarb-za/mcp"
      ]
    }
  }
}
home_rates

Current headline South African rates shown on the SARB home page: CPI & PPI inflation, SARB Policy Rate, prime lending rate, government bond yields, Sabor/Zaronia money-market rates, and key Rand exch

current_market_rates

Current South African money-market rates: SARB Policy Rate, Sabor, Zaronia. Each item includes a TimeseriesCode usable with the `timeseries` tool. No arguments.

cpd_rates

Current Corporation for Public Deposits (CPD) interest rates: interest charged and interest earned. Each item includes a TimeseriesCode usable with the `timeseries` tool. No arguments.

exchange_rates

Selected South African Rand exchange rates. frequency="daily" (default) returns latest daily rates (Rand per USD, GBP, Euro, etc.). frequency="monthly" returns latest monthly figures including the nom

timeseries

Historical observation series for a single SARB indicator, identified by its TimeseriesCode (obtain codes from home_rates, current_market_rates, cpd_rates or exchange_rates). Examples: "MMRD002A" (SAR


Banco Central de Reserva del Perú (BCRP) statistics series API MCP. Keyless.

FinanceEconomics 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bcrp-pe": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bcrp-pe/mcp"
      ]
    }
  }
}
get_series

Time-series data from the Banco Central de Reserva del Perú (BCRP) statistics API. Pass one or more BCRP


Hong Kong Monetary Authority (HKMA) public open API MCP. Keyless.

FinanceEconomicsAsia 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hkma-hk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hkma-hk/mcp"
      ]
    }
  }
}
hkma_dataset

Fetch ANY HKMA public dataset by its endpoint path (the part after https://api.hkma.gov.hk/public/).

interbank_liquidity

Daily interbank liquidity figures: overnight & 1-month HIBOR, aggregate balance (opening/closing),

monetary_base

Daily figures for the components of the Hong Kong Monetary Base: Certificates of Indebtedness,

interbank_interest_rates

HKD interbank offered rates (HIBOR) by tenor: overnight, 1-week, 1/3/6/9/12-month, one record per day

exchange_rates

HKD market exchange rates vs major currencies (USD, GBP, JPY, CNY, EUR, AUD, CAD, SGD, etc.),


Bank of Israel public API MCP. Keyless.

FinanceEconomics 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-boi-il": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/boi-il/mcp"
      ]
    }
  }
}
exchange_rates

All current Bank of Israel representative exchange rates vs the Israeli Shekel (ILS). Returns one entry per currency with currentExchangeRate (shekels per `unit` of the foreign currency), currentChang

exchange_rate

Current Bank of Israel representative exchange rate for a single currency vs the Israeli Shekel (ILS), by 3-letter ISO code. Returns currentExchangeRate (shekels per `unit`), currentChange (%), unit,

interest_rate

The current Bank of Israel policy interest rate (% per annum). Returns currentInterest (the rate), nextInterestDate (date of the next rate decision), and lastPublishedDate.


BPstat — Banco de Portugal statistics API (Portuguese central bank). Keyless.

FinanceEconomicsEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bpstat-pt": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bpstat-pt/mcp"
      ]
    }
  }
}
list_domains

List Banco de Portugal's statistical domains (the full subject tree). Each domain has

list_datasets

List the datasets within a statistical domain (use a domain id from list_domains). Returns a

get_dataset

Fetch a dataset as JSON-stat — THIS is how you get actual data/observations. Returns the value[]

get_series_metadata

Look up metadata for one or more series by numeric series id. Returns label, short_label,


data.gov.my / OpenDOSM (Department of Statistics Malaysia) — official Malaysian open-data API.

GovernmentDemographicsAsia 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-opendosm-my": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/opendosm-my/mcp"
      ]
    }
  }
}
opendosm_get_dataset

Fetch records from an official Malaysian statistics dataset (data.gov.my / OpenDOSM, Dept of Statistics Malaysia).

opendosm_dataset_meta

Metadata for one Malaysian dataset (data.gov.my): catalogue_id, data_as_of, last_updated, next_update,

opendosm_list_datasets

List the curated, verified high-value datasets available from data.gov.my / OpenDOSM (Dept of Statistics Malaysia).


SingStat Table Builder MCP — Department of Statistics Singapore.

GovernmentDemographicsAsia 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-singstat-sg": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/singstat-sg/mcp"
      ]
    }
  }
}
search_tables

Search Singapore official statistics tables (Department of Statistics Singapore) by keyword.

table_data

Fetch the time-series data rows for a Singapore statistics table by resourceId (get ids from search_tables).

table_metadata

Get the structure/metadata for a Singapore statistics table by resourceId (get ids from search_tables): theme, subject, frequency, period coverage and the list of variables/series. Result is under `Da


Bank Negara Malaysia open API: MYR exchange rates, Kijang Emas gold prices, overnight policy rate, and per-bank lending rates.

FinanceEconomicsAsia 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bnm-my": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bnm-my/mcp"
      ]
    }
  }
}
exchange_rates

Foreign exchange rates against the Malaysian Ringgit (MYR) from Bank Negara Malaysia.

gold_kijang_emas

Kijang Emas — Malaysia's official gold bullion coin — buying and selling prices (in MYR) by coin size

policy_rate_opr

Overnight Policy Rate (OPR) — Bank Negara Malaysia's benchmark monetary policy interest rate.

base_rate

Per-bank Base Rate (BR), Base Lending Rate (BLR) and indicative effective lending rate published by

bnm_endpoint

Call any other confirmed Bank Negara Malaysia public endpoint by path and get its raw `data`.


ILO ILOSTAT — global labour statistics: employment, unemployment, wages, and working conditions via SDMX dataflows.

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

Browse or keyword-search ILOSTAT datasets (dataflows) from the International Labour Organization. Each result has an `id` (the dataflowId you pass to get_data / dataflow_structure) and an English name

dataflow_structure

Get the structure (Data Structure Definition) of one ILOSTAT dataset: its ordered dimensions and, for each, the valid codes. Use this to learn how to build the dot-separated SDMX key for get_data. The

get_data

Pull observations from an ILOSTAT dataset. `key` is a dot-separated SDMX dimension filter, one position per dimension in the order given by dataflow_structure; leave a position empty to wildcard it. I


UNHCR Refugee Data Finder: displaced persons, asylum applications and decisions by country and year — keyless.

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

Forcibly displaced & stateless persons by year and country: refugees, asylum_seekers, idps (internally displaced), returned_refugees, returned_idps, stateless, others. Filter by coo (country of origin

asylum_applications

Asylum applications lodged, by year, country of origin (coo) and country of asylum (coa). Rows carry procedure_type, app_type, dec_level and the `applied` count; response.total.applied is the aggregat

asylum_decisions

Decisions on asylum claims, by year, country of origin (coo) and country of asylum (coa). Each row breaks out dec_recognized, dec_other, dec_rejected, dec_closed and dec_total; response.total aggregat

list_countries

Reference list of countries/territories UNHCR tracks. Use this to map a country name to the `code` you pass as coo/coa in the other tools. Each item has: code (UNHCR 3-letter, USE THIS for filtering),


UNESCO Institute for Statistics: education enrollment, literacy, school completion, R&D spending, and culture indicators by country.

EducationGovernmentDemographics 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-unesco-uis": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/unesco-uis/mcp"
      ]
    }
  }
}
get_data

Fetch UNESCO UIS statistic values: education, literacy, school enrollment/completion, science (R&D) and culture indicators. Returns {records:[{indicatorId,geoUnit,year,value}]}. Indicator IDs come fro

list_indicators

Browse/search the UNESCO UIS indicator catalog (education, literacy, enrollment, science/R&D, culture). Filter by case-insensitive name substring. Each entry has indicatorCode (pass as `indicator` to

list_geounits

List UNESCO UIS geographic units (countries/regions) with their ISO3 code (id), name and type. Use the id as `geoUnit` in get_data. Optional case-insensitive name substring filter.


National Bank of Ukraine (NBU) public statistics MCP. Keyless.

FinanceEconomicsEurope 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nbu-ua": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nbu-ua/mcp"
      ]
    }
  }
}
exchange_rates

Official NBU exchange rates for ALL currencies on a single day (the rate the National Bank of Ukraine sets daily). Returns one record per currency: {r030 (numeric currency code), txt (Ukrainian name),

currency_rate

Official NBU rate for a SINGLE currency on one day. Pass `valcode` as an ISO-4217 code (e.g. USD, EUR, GBP). `rate` is UAH per 1 unit of that currency. Omit `date` for today. For a time series of one

currency_history

Daily time series of the official NBU rate for ONE currency over a date range. Pass `valcode` (ISO-4217, e.g. USD) and `start`/`end` as YYYYMMDD. Returns one record per business day: {exchangedate (DD

monetary_aggregates

NBU monetary aggregates (M0, M1, M2, M3 money supply, in UAH million) for a given month. Each record: {dt (YYYYMMDD), txt (Ukrainian name), txten (English name), id_api (e.g. M2/M3), value, freq}. `da

international_reserves

NBU official international (reserve) assets for a given month, broken down by component. Each record: {dt (YYYYMMDD), txt (Ukrainian name), txten (English name), id_api, value, freq}. `date` selects t


Humanitarian Data Exchange (HDX/OCHA): search and access datasets on displacement, food security, conflict, disasters, and health emergencies.

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

Search the Humanitarian Data Exchange catalogue (CKAN package_search) for datasets on displacement, refugees, food security, conflict, disasters, health, population, etc. Returns matching datasets wit

dataset_details

Full dataset record by id or slug (CKAN package_show), including its resources. Each resource has a "download_url"/"url" pointing at the actual data file (usually CSV/XLSX) — that is how you read the

list_locations

List the locations on HDX (CKAN group_list) — countries and crises, each keyed by a lowercase ISO3 code (e.g. {"name":"syr","display_name":"Syrian Arab Republic"}). Use a code as fq="groups:<name>" in

list_organizations

List the publishing organizations on HDX (CKAN organization_list) — UN agencies and NGOs such as OCHA, UNHCR, WFP, IDMC, ACAPS. Use an org "name" as fq="organization:<name>" in search_datasets.


UN Sustainable Development Goals (SDG) Indicators MCP — UN Statistics Division.

GovernmentEconomicsDemographics 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-un-sdg": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/un-sdg/mcp"
      ]
    }
  }
}
list_goals

List the 17 UN Sustainable Development Goals (code, title, description). Optionally drill into one goal to get its targets and indicators.

list_indicators

The queryable catalog of SDG indicators. Each indicator (e.g. "1.1.1") nests its data series with their series codes (e.g. "SI_POV_DAY1"). Use a series code as seriesCode in get_series_data.

list_series

Flat list of all SDG data series (series code + description + goal/target/indicator it belongs to). Series codes are what you pass to get_series_data. Use this when you want the raw series list rather

list_geoareas

List geographic areas with their M49 area codes (e.g. 1 = World, 4 = Afghanistan, 8 = Albania). Pass an M49 code as areaCode in get_series_data.

get_series_data

Get observations for an SDG series in a geographic area over a time range. seriesCode comes from list_indicators/list_series; areaCode is an M49 code from list_geoareas. Returns { data: [...] } where


World Bank Data360: unified access to WDI, IMF Balance of Payments, education, and 20+ other World Bank indicator databases.

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

List the source databases aggregated by World Bank Data360 (e.g. WB_WDI = World Development Indicators, IMF_BOP = Balance of Payments, WB_EDSTATS = Education Statistics). Returns each DATABASE_ID with

data360_search_indicators

Full-text search across all Data360 indicators (every WDI/IMF/WHO/ILO/education series in one index). Returns indicator codes (use as INDICATOR in data360_get_data), names, owning DATABASE_ID/name, un

data360_get_data

Fetch observations for one Data360 series. DATABASE_ID selects the source database (e.g. WB_WDI), INDICATOR is the code from data360_search_indicators (e.g. WB_WDI_SP_POP_TOTL), REF_AREA is an ISO3 co


UNICEF Data: global statistics on child health, nutrition, education, child protection, mortality, and poverty via SDMX dataflows.

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

Browse or keyword-search UNICEF's datasets (dataflows). UNICEF Data covers child health, nutrition, education, child protection, child mortality, child poverty, immunization, water/sanitation/hygiene

dataflow_structure

Get the structure (Data Structure Definition) of one UNICEF dataset: its ordered dimensions and, for each, the valid codes (e.g. countries, indicators, sex, age, wealth quintile). Use this to learn ho

get_data

Pull observations from a UNICEF dataset. `key` is a dot-separated SDMX dimension filter, one position per dimension in the order given by dataflow_structure; leave a position empty to wildcard it. Cal


Croatian National Bank (Hrvatska narodna banka, HNB) exchange-rate MCP. Keyless.

FinanceEurope 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hnb-hr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hnb-hr/mcp"
      ]
    }
  }
}
exchange_rates

HNB (Croatian National Bank) official exchange rates for ALL foreign currencies on a given date.

currency_rate

HNB exchange rate for ONE foreign currency vs EUR (Croatia is in the eurozone).


National Bank of Romania (Banca Naţională a României, BNR) FX reference rates MCP. Keyless.

FinanceEurope 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bnr-ro": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bnr-ro/mcp"
      ]
    }
  }
}
exchange_rates

Latest National Bank of Romania (BNR) official FX reference rates, parsed from BNR's daily XML feed.

exchange_rates_history

Historical National Bank of Romania (BNR) official FX reference rates, parsed from XML.


Statistics Faroe Islands (Hagstova Føroya): browse and query official Faroese statistical tables via PxWeb — population, economy, trade.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-hagstova-fo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/hagstova-fo/mcp"
      ]
    }
  }
}
subjects

Navigate the subject tree. Empty path returns the database list (drill into "H2"); items have type "l" (folder) or "t" (table, id ends in ".px").

table_meta

Table definition (dimensions, valid values). Path must end in the ".px" table id.

query_table

Pull data from a table. body is a PxWeb query object. Mind PxWeb cell limits — narrow each dimension via selection.values.


Statistics Greenland (Grønlands Statistik): browse and query official Greenlandic statistical tables via PxWeb — population, economy, environment.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-stat-gl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/stat-gl/mcp"
      ]
    }
  }
}
subjects

Navigate the subject tree. Nodes are type "l" (folder) or "t" (table).

table_meta

Table definition (dimensions, valid values). Keep the .px/.PX suffix on the table id.

query_table

Pull data from a table. body is a PxWeb query object. PxWeb enforces a per-query cell limit; narrow selections for large tables.


MakStat — North Macedonia State Statistical Office: browse and query official national statistics via PxWeb — demographics, economy, trade.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-makstat-mk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/makstat-mk/mcp"
      ]
    }
  }
}
subjects

Navigate the subject tree. Items have type "l" (folder) or "t" (table, .px suffix).

table_meta

Table definition (dimensions, valid values). Path must end in the ".px" table id.

query_table

Pull data from a table. body is a PxWeb query object. Narrow dimensions to stay under the PxWeb cell limit.


Kosovo Agency of Statistics (ASKdata): browse and query official Kosovo statistical tables via PxWeb — population, economy, and social indicators.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-askdata-xk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/askdata-xk/mcp"
      ]
    }
  }
}
subjects

Navigate the subject tree. Root lists databases ({dbid}); start at "ASKdata".

table_meta

Table definition (dimensions, valid values). Path must end in ".px".

query_table

Pull data from a table (path ends in ".px"). body is a PxWeb query object. Mind the ~10,000-cell limit.


National Bureau of Statistics of Moldova (Statbank): browse and query official Moldovan statistical tables via PxWeb — economy, population, trade.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-statbank-md": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/statbank-md/mcp"
      ]
    }
  }
}
subjects

Navigate the database/subject tree. Root (empty path) lists databases ({dbid}). Drill into a database id to get folders (type "l") and tables (type "t", ".px" suffix).

table_meta

Table definition (dimensions, valid values). Path must end in the ".px" table id.

query_table

Pull data from a table (POST). body is a PxWeb query object. Keep selected cells under ~10,000.


OpenFEMA

live

OpenFEMA: US Federal Emergency Management Agency open data — disaster declarations, emergency datasets via OData queries.

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

Look up FEMA disaster declarations (DisasterDeclarationsSummaries). Convenience filters for state (2-letter), year (fyDeclared, the federal fiscal year of declaration), incidentType (e.g. 'Fire', 'Flo

query_dataset

Generic OData query against any OpenFEMA dataset. Specify the entity name (and optionally version; defaults to the verified current version) plus OData params: filter, select, orderby, top, skip. Use

list_datasets

List the OpenFEMA datasets this pack knows about, with their entity name, current version, and a description. Also documents the OData filter syntax and response shape. Call this first to discover wha


CMS Open Data: US Centers for Medicare & Medicaid Services datasets — provider data, spending, enrollment, drug pricing, and quality measures.

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

Find CMS dataset IDs + titles by keyword. CMS publishes Medicare/Medicaid open data (provider data, spending, enrollment, drug pricing, quality measures, hospitals, nursing homes, ACOs, etc.). Searche

get_dataset

Pull rows from a CMS dataset by datasetId (UUID from search_datasets). Returns an array of row objects whose keys are the dataset columns. Supports paging (size/offset), full-text keyword search acros

dataset_info

Metadata for a CMS dataset by datasetId: title, description, total row count, last-modified date, themes/keywords, and downloadable resources (CSV files, data dictionaries). Use after search_datasets


FCC

live

FCC geo.fcc.gov API: resolve US lat/lon to Census block, county, state FIPS codes, population, and FCC market-area identifiers.

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

Resolve a US latitude/longitude (decimal degrees) to its Census block, county, and state FIPS codes and names. Returns the 15-digit block FIPS, 5-digit county FIPS, 2-digit state FIPS, state code/name

census_area

Resolve a US latitude/longitude (decimal degrees) to its full Census area record: block/county/state FIPS + names plus 2020 block population and FCC market-area codes (BEA, BTA, CMA, EAG, MEA, MTA, PE

county_for_point

Lightweight reverse geocode: return just the county and state for a US latitude/longitude (decimal degrees) — county FIPS + name, state FIPS + code + name. Convenience wrapper over the FCC block-find


Transport for London (TfL) Unified API MCP — keyless.

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

Current service status for London transport lines. Pass either a comma-separated list of modes (e.g. "tube,dlr") OR a specific lineId (e.g. "victoria", "central"). Returns each line with lineStatuses

stop_search

Search for stops/stations by name. Returns matches with a naptanId (the "id" field) used by the arrivals tool, plus modes, zone, and lat/lon.

arrivals

Real-time predicted arrivals at a stop. Pass the naptanId from stop_search (e.g. "940GZZLUOXC"). Results are sorted by timeToStation (seconds away), nearest first.

plan_journey

Plan a journey across London transport. from/to may be stop names, postcodes, or "lat,lon" coordinates. Returns journey options (legs, durations, modes). If a location is ambiguous, the API returns di

bike_points

Santander Cycle docking stations with live availability (bikes, empty docks, total docks in additionalProperties). Pass an optional search to filter by name/area; omit it to list all docking stations.

disruptions

Current disruptions for the given transport modes, with description and affected lines.


HM Land Registry Price Paid Data (UK) MCP.

Real EstateEurope 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-landregistry-uk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/landregistry-uk/mcp"
      ]
    }
  }
}
search_transactions

Search HM Land Registry Price Paid records — individual residential property sales in England & Wales since 1995.

lookup_postcode

Convenience: list the most recent HM Land Registry property sales for a single UK postcode (England & Wales).


Energy-Charts (Fraunhofer ISE) MCP — European electricity generation, prices, and capacity.

EnergyEuropeClimate 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-energy-charts": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/energy-charts/mcp"
      ]
    }
  }
}
public_power

Electricity generation broken down by production type (solar, wind, nuclear, gas, etc.) for a country over a date range. Returns {unix_seconds, production_types:[{name, data}]}; each series' data arra

electricity_price

Day-ahead spot electricity prices for a bidding zone over a date range. Returns {unix_seconds, price, unit}; the price array is timestamp-aligned to unix_seconds. Prices in EUR/MWh.

total_power

Total electricity generation / load for a country over a date range. Returns {unix_seconds, production_types:[{name, data}]}; data arrays are timestamp-aligned to unix_seconds. Power in MW.

installed_power

Installed generation capacity by production type for a country, as an annual or monthly series. Returns {time:["2002",...], production_types:[{name, data}]}; data arrays are aligned to the time array.

renewable_share

Renewable share of electricity load for a country over a date range. Returns a list of series [{name, data, ...}] where each data point is a percentage; values are timestamp-ordered. Percent of load.


EMSC (European-Mediterranean Seismological Centre): search and retrieve global earthquake events via FDSN seismicportal.eu — magnitude, depth, location.

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

Search seismic events from EMSC (European-Mediterranean Seismological Centre) via the FDSN-standard seismicportal.eu API. Global coverage with especially strong Europe/Mediterranean reporting — comple

recent_earthquakes

Get recent earthquakes from EMSC (European-Mediterranean Seismological Centre): the last N days above a minimum magnitude, newest first. Convenience wrapper over the FDSN event API. Global coverage, s


U.S. Bureau of Transportation Statistics (BTS) — data.bts.gov open-data portal (Socrata platform).

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

Search datasets published on the U.S. Bureau of Transportation Statistics open-data portal

dataset_columns

List the columns of a data.bts.gov dataset: field name (used in SoQL $select/$where), human label,

query_dataset

Query rows from a data.bts.gov dataset using SoQL. datasetId is the Socrata 4x4 code from


UK Health Security Agency (UKHSA) data dashboard MCP — keyless.

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

Walk the UKHSA surveillance hierarchy one level at a time to discover valid values.

list_metrics

Convenience shortcut: list every available metric for a fully-specified location

get_metric_data

Pull the time series for one fully-specified UKHSA metric. Requires all six levels


geoBoundaries: open database of political administrative boundary metadata and simplified GeoJSON geometries for countries at ADM0–ADM5 levels.

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

Get administrative boundary metadata for a country from geoBoundaries:

get_geometry

Fetch the actual simplified GeoJSON FeatureCollection geometry for a country/ADM level


Israel Central Bureau of Statistics (CBS / הלשכה המרכזית לסטטיסטיקה) MCP.

EconomicsGovernmentAsia 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cbs-il": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cbs-il/mcp"
      ]
    }
  }
}
catalog_browse

Browse the CBS time-series catalog. With no subject_id, returns the top-level subjects (Foreign Trade, Population, Balance of Payments, Consumer Price Index, etc.) — each with a numeric path id. Pass

get_series_data

Fetch the actual time-series observations for a CBS series by its numeric series id (the leaf id found via catalog_browse). Returns metadata (subject path, unit, prices, last update) plus an array of

index_catalog

List the official CBS price-index catalog tree: chapters (Consumer Price Index, Wholesale Price Index, Housing Price Index, etc.) and their codes. Each code has a numeric codeId used by get_index_data

get_index_data

Fetch monthly values for a CBS price index by its numeric code (from index_catalog, e.g. 120010 = CPI General). Returns per-month entries with the index value, the monthly percent change (percent) and


Hong Kong Census and Statistics Department (C&SD) open-data MCP.

GovernmentEconomicsAsia 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-censtatd-hk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/censtatd-hk/mcp"
      ]
    }
  }
}
censtatd_get_table

Fetch a Hong Kong Census & Statistics Department statistical table as structured JSON

censtatd_table_info

Get metadata for a Hong Kong C&SD statistical table without pulling the data: title, footnotes

censtatd_search_tables

Search the Hong Kong C&SD table catalogue by keyword (e.g. 'exchange rates', 'unemployment',


Stooq free community market-quotes: latest OHLCV prices for US stocks, indices, forex pairs, crypto, and futures by symbol.

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

Latest market quote (OHLCV + date/time) for one or more symbols from Stooq, a free community data

symbol_guide

Explain Stooq symbol conventions (US ".us", indices "^", forex pairs, crypto, futures ".f") with


Kolada (RKA) MCP — Sweden's municipal & regional key-performance-indicator (KPI) database.

GovernmentDemographicsEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-kolada-se": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/kolada-se/mcp"
      ]
    }
  }
}
search_kpi

Find Kolada KPI (indicator) ids by title substring (Swedish). Searches ~5,000 indicators

list_municipalities

Find Sweden municipality/region ids by name substring. Returns id, title, and type

get_data

Read KPI values for a municipality (or region) and year. Provide a kpiId from search_kpi and a

list_org_units

List organizational units (schools, preschools, eldercare facilities, etc.) within a municipality.


Octopus Energy public API MCP — UK energy tariffs & products.

EnergyEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-octopus-energy": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/octopus-energy/mcp"
      ]
    }
  }
}
list_products

List Octopus Energy UK energy products (electricity & gas tariff families, e.g. "Agile Octopus", "Flexible Octopus"). Returns {count, results:[{code, display_name, direction, is_variable, is_green, is

product_details

Full detail for one product code, including its tariffs broken out by GSP region "_A".."_P" and payment method (e.g. direct_debit_monthly). Each tariff entry has a "code" (e.g. "E-1R-AGILE-24-10-01-C"

tariff_unit_rates

Time-series of electricity unit rates for a specific tariff — for Agile this is the half-hourly wholesale-tracked pricing. Returns {count, results:[{value_exc_vat, value_inc_vat, valid_from, valid_to,

grid_supply_point

Map a UK postcode to its GSP (Grid Supply Point) group "_A".."_P". The group_id is the region suffix used in tariff codes and in product_details regional breakdowns. Returns {count, results:[{group_id


Statistics and Research Åland (ÅSUB): browse and query official Åland Islands statistical tables via PxWeb — population, economy, and social data.

GovernmentDemographicsEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-asub-ax": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/asub-ax/mcp"
      ]
    }
  }
}
subjects

Navigate the subject tree. Empty path returns the database list (drill into "Statistik"); items have type "l" (folder) or "t" (table, id ends in ".px").

table_meta

Table definition (dimensions, valid values). Path must end in the ".px" table id.

query_table

Pull data from a table. body is a PxWeb query object. Mind PxWeb cell limits — narrow each dimension via selection.values.


World Bank Poverty and Inequality Platform (PIP) MCP.

EconomicsDemographicsGovernment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-worldbank-poverty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/worldbank-poverty/mcp"
      ]
    }
  }
}
get_poverty

Official World Bank poverty & inequality estimates for a country (or all countries).

get_poverty_regional

Aggregated World Bank poverty estimates at the regional/group level (not per-country).

list_reference

Reference / metadata for the PIP dataset. table="versions" lists available data releases & PPP rounds;


World Bank Climate Change Knowledge Portal (CCKP): historical climate observations and CMIP6 model projections for any country.

ClimateWeatherGovernment 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-worldbank-climate": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/worldbank-climate/mcp"
      ]
    }
  }
}
get_climate_data

World Bank CCKP climate data for any country: historical observations and CMIP6 climate-model projections.

list_options

Documents the CCKP indicator-code components and the value combinations that were VERIFIED live against the API.


data.gov.ie MCP — Ireland's national open-data portal (CKAN API).

GovernmentEurope 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datagov-ie": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datagov-ie/mcp"
      ]
    }
  }
}
search_datasets

Search Ireland's national open-data catalogue (data.gov.ie, CKAN package_search). Returns matching datasets from government departments, state agencies, and local councils, with titles/descriptions an

dataset_details

Full dataset record by id or slug (CKAN package_show), including its resources. Each resource has a download "url" (often PDF/CSV/XLSX) and a "datastore_active" flag; resources with datastore_active=t

datastore_query

Read actual table rows from a resource via CKAN datastore_search. Works only for resources with datastore_active=true (get the resource_id from dataset_details).

list_organizations

List publishing organizations (government departments, state agencies, county/city councils) on data.gov.ie (CKAN organization_list).

list_groups

List thematic groups/categories on data.gov.ie (CKAN group_list).


opendata.gov.je — Government of Jersey's official open-data catalogue (CKAN): datasets, resources, and organizations from the Channel Island Crown Dependency.

GovernmentEurope 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-jersey-opendata": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/jersey-opendata/mcp"
      ]
    }
  }
}
search_datasets

Search the Government of Jersey open-data catalogue (opendata.gov.je, CKAN package_search). Jersey is a Channel Island Crown Dependency; data is published by Statistics Jersey. Returns matching datase

dataset_details

Full Jersey dataset record by id or slug (CKAN package_show), including its resources. Read each resource's "id" (resource_id), download "url", and "datastore_active" flag to know which resources can

datastore_query

Read actual table rows from a Jersey resource via CKAN datastore_search. Works only for resources with datastore_active=true (get the resource_id from dataset_details). Returns parsed records plus fie

list_organizations

List publishing organizations (Jersey government departments/agencies, e.g. Statistics Jersey) on opendata.gov.je (CKAN organization_list).

list_groups

List thematic groups/categories on opendata.gov.je, e.g. "Economy and business", "Coronavirus (COVID-19)" (CKAN group_list).


data.gov.uk MCP — UK national open-data portal (CKAN API).

GovernmentEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-datagov-uk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/datagov-uk/mcp"
      ]
    }
  }
}
search_datasets

Search the data.gov.uk catalogue (CKAN package_search) across 57k+ UK government open datasets. Returns matching datasets with titles, descriptions, publishing organization, and resources. Content is

dataset_details

Full dataset record by id or slug (CKAN package_show), including its resources. Each resource exposes a downloadable file: read "url" (the download link), "format" (CSV/XLSX/ZIP/etc.), and "name". dat

list_organizations

List publishing organizations on data.gov.uk (CKAN organization_list) — UK government departments, agencies, councils, NHS bodies, ONS, etc. Use a returned org "name" as fq="organization:<name>" in se

organization_details

Full details for one publishing organization (CKAN organization_show): display name, description, dataset count, and (optionally) a sample of its datasets. Use to learn what a given UK publisher relea


dati.gov.it MCP — Italy's national open-data portal (CKAN API).

GovernmentEurope 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dati-it": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dati-it/mcp"
      ]
    }
  }
}
search_datasets

Search the dati.gov.it catalogue of Italian public-administration open data (CKAN package_search). Returns matching datasets with titles/descriptions (mostly Italian). Query may be Italian or English;

dataset_details

Full dataset record by id or slug (CKAN package_show), including its resources. Each resource carries a "url" you can fetch directly to download the data (CSV/JSON/etc.) — this portal has no datastore

list_organizations

List the publishing organizations (ministries, regions, comuni, health agencies, etc.) on dati.gov.it (CKAN organization_list). Returns organization slugs; pass one to organization_details for the ful

organization_details

Full record for one publishing organization by slug or id (CKAN organization_show): Italian display name, description, and dataset count. Get the slug from list_organizations or a dataset record.

list_groups

List thematic groups/categories (Italian themes like Agricoltura, Salute, Trasporti) on dati.gov.it (CKAN group_list, with full fields).


data.overheid.nl MCP — the Netherlands national open-data portal (CKAN API).

GovernmentEurope 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-overheid-nl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/overheid-nl/mcp"
      ]
    }
  }
}
search_datasets

Search the data.overheid.nl catalogue of Dutch government open data (CKAN package_search). Returns matching datasets with titles/descriptions (mostly Dutch). Query may be Dutch or English; Dutch match

dataset_details

Full dataset record by id or slug (CKAN package_show), including its resources. Each resource has a download "url" and "format" (CSV/JSON/etc.) — the portal is metadata-only, so fetch those URLs to ge

list_organizations

List publishing organizations (ministries/agencies/provinces) on data.overheid.nl (CKAN organization_list). Use an org "name" in search_datasets fq, e.g. "organization:<name>".

list_groups

List thematic groups/categories on data.overheid.nl (CKAN group_list). Note: this portal currently exposes no groups (returns an empty list) — prefer fq facets on search_datasets to narrow by theme.


Outlook / Microsoft 365 Mail via Graph API: read inbox, fetch messages, list folders, and search email for the signed-in user.

ProductivitySaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-outlook_mail": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/outlook_mail/mcp"
      ]
    }
  }
}
outlook_list_messages

List email messages from an Outlook / Microsoft 365 mailbox folder (default: inbox). Returns compact message summaries (subject, sender, received time, preview, read status, attachment flag). Supports

outlook_get_message

Get the full content of a single Outlook / Microsoft 365 email message by its ID, including subject, sender, recipients (to/cc), received time, and the full body (HTML or text). Use after outlook_list

outlook_list_folders

List the mail folders in an Outlook / Microsoft 365 mailbox, with display names, unread counts, and total item counts. Use to discover folder names/IDs before listing messages.

outlook_search_messages

Search across an entire Outlook / Microsoft 365 mailbox by keyword. Returns matching email summaries (subject, sender, received time, preview). Use to find emails by topic, sender, or content regardle

outlook_get_profile

Get the signed-in user's Microsoft 365 / Outlook profile: display name, email address, user principal name, job title, and mobile phone. Use to identify whose mailbox is connected.


Outlook / Microsoft 365 Calendar via Graph API: list events, get event details, check calendars, and find free/busy time for the signed-in user.

ProductivitySaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-outlook_calendar": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/outlook_calendar/mcp"
      ]
    }
  }
}
list_events

List upcoming events from the user's Outlook / Microsoft 365 calendar within a time window. Returns subject, start/end times, location, organizer, all-day flag, and online meeting URL for each event.

get_event

Get full details of a single Outlook / Microsoft 365 calendar event by its ID. Returns subject, start/end times, location, organizer, attendees, body, all-day flag, and online meeting URL. Use after l

list_calendars

List all calendars accessible in the user's Outlook / Microsoft 365 account. Returns each calendar's ID, name, owner, edit permission, and whether it is the default calendar. Use to discover which cal

find_meeting_times

Return the user's busy time windows from their Outlook / Microsoft 365 calendar over the next N days — a lightweight free/busy view. Each window includes start, end, subject, and all-day flag. Use to

get_profile

Get the signed-in user's Microsoft 365 / Outlook profile: display name, primary email (mail), and user principal name. Use to confirm whose calendar is connected.


OneDrive

live

OneDrive (Microsoft 365) via Graph API: browse folders, search and download files, list shared items, and check storage quota.

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

List files and folders in a OneDrive (Microsoft 365) folder. Pass a folder path relative to the drive root (e.g. "Documents" or "Documents/Reports"); omit to list the root. Returns each item's id, nam

onedrive_search_files

Search a user's OneDrive (Microsoft 365) for files and folders matching a query string across file names and content. Returns matching items with id, name, size, folder flag, last-modified time, and w

onedrive_get_file

Get full metadata for a single OneDrive (Microsoft 365) file or folder by its item id. Returns id, name, size, folder/file info, created and last-modified times, web URL, and parent reference. Use aft

onedrive_get_file_content

Download and return the text content of a OneDrive (Microsoft 365) file by its item id. Best for plain-text, Markdown, and CSV files; binary formats (Office docs, PDFs, images) will return unreadable

onedrive_list_shared

List files and folders that have been shared with the user in OneDrive / Microsoft 365 ("Shared with me"). Returns each item's name, web URL, and who shared it. Use to find documents shared by colleag

onedrive_get_profile

Get the user's OneDrive (Microsoft 365) drive profile: drive type, storage quota used and total (in bytes), and the owner display name. Use to report storage usage or confirm the connected account.


Real-time US electricity grid data (CAISO/ERCOT/NYISO): fuel mix, demand, renewables, CO2 intensity, and locational marginal prices.

EnergyEnvironment 10 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-us-iso-grid": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/us-iso-grid/mcp"
      ]
    }
  }
}
caiso_fuel_mix

CAISO (California) real-time grid fuel mix for today: solar, wind, geothermal, biomass, biogas, small hydro, coal, nuclear, natural gas, large hydro, batteries, imports per 5-minute interval. Returns

caiso_demand

CAISO (California) real-time electricity demand vs. forecast for today. Returns 5-minute demand series + day-ahead forecast + hour-ahead forecast (MW). Use for "is California load tracking forecast",

caiso_renewables

CAISO (California) real-time renewable generation breakdown for today: solar, wind, geothermal, biomass, biogas, small hydro, nuclear, large hydro, batteries (MW per 5-min interval). Subset of caiso_f

caiso_co2

CAISO (California) real-time grid carbon intensity for today: metric tons CO2 emitted per 5-minute interval, plus marginal CO2 (lbs/MWh). Use for "what is California grid carbon intensity right now",

ercot_fuel_mix

ERCOT (Texas) real-time grid fuel mix: coal/lignite, natural gas, nuclear, hydro, wind, solar, power storage, other (MW). Returns the most recent 5-minute snapshot plus monthly installed capacity per

ercot_supply_demand

ERCOT (Texas) real-time supply (capacity) vs. demand: hourly capacity, current demand, ERCOT load forecast (MW). Returns the recent day plus today's forecast. Use for "is ERCOT close to its reserve ma

nyiso_lmp_zonal

NYISO (New York) zonal LMP (locational marginal price, $/MWh) for the most recent published day, broken down by load zone (CAPITL, CENTRL, DUNWOD, GENESE, HUD VL, LONGIL, MHK VL, MILLWD, N.Y.C., NORTH

nyiso_fuel_mix

NYISO (New York) real-time grid fuel mix for the most recent published day: dual fuel (gas/oil-capable), natural gas, nuclear, other fossil fuels, hydro, wind, solar, other renewables (MW per 5-min in

nyiso_load

NYISO (New York) actual zonal load (MW) per 5-minute interval for the most recent published day, by zone (CAPITL, CENTRL, DUNWOD, GENESE, HUD VL, LONGIL, MHK VL, MILLWD, N.Y.C., NORTH, WEST). Use for

nyiso_load_forecast

NYISO (New York) ISO load forecast (ISOLF) for the most recent published day, per zone, MW. Use for "what does NYISO expect demand to be today", forecast-error tracking vs. nyiso_load.


Hex.pm

live

Hex.pm package registry for Elixir and Erlang: look up packages, search by keyword, fetch release metadata and version history.

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

Look up a single Hex.pm package (Elixir/Erlang mix package) by name. Returns description, licenses, links, latest version, and download counts.

search_packages

Search the Hex.pm registry for Elixir/Erlang mix packages by keyword. Returns a list of matching packages with descriptions, latest versions, and downloads.

get_release

Get details for a specific version (release) of a Hex.pm package (Elixir/Erlang mix package): dependency requirements, docs availability, publisher, and downloads.

list_releases

List all published versions (releases) of a Hex.pm package (Elixir/Erlang mix package), each with its version and publish date.


pub.dev

live

pub.dev Dart & Flutter package registry: metadata, quality scores, version history, and keyword search for Dart/Flutter packages.

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

Get metadata for a Dart/Flutter package on pub.dev: latest version, description, homepage, repository, supported SDK environment, and publish date (from the pubspec).

get_package_score

Get the pub.dev quality score for a Dart/Flutter package: granted/max pub points, like count, popularity, 30-day download count, and classification tags (platforms, SDKs, license).

search_packages

Search pub.dev for Dart & Flutter packages by keyword. Returns matching package names and a next-page URL.

list_versions

List all published versions of a Dart/Flutter package on pub.dev, with each version string and its publish date, plus the current latest version.


dados.gov.pt — Portugal's national open-data portal: search datasets, fetch records, list government publishers, and find recent releases.

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

Search datasets on dados.gov.pt, Portugal's national open data portal (Portuguese government open data). Returns matching datasets with title, description, publishing organization, and downloadable-re

get_dataset

Fetch a single dataset from dados.gov.pt (Portuguese government open data) by its id or slug, including full description, license, update frequency, tags, and the list of downloadable resources (files

list_organizations

List or search the organizations (Portuguese government bodies and other publishers) that publish open data on dados.gov.pt, with their dataset counts and portal pages.

recent_datasets

Get the most recently published datasets on dados.gov.pt, Portugal's national open data portal (Portuguese government open data), sorted newest first.


PyPI

live

PyPI MCP — wraps the Python Package Index (PyPI) JSON API (free, no auth).

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

Get metadata for a Python package on PyPI (the Python Package Index). Returns the latest version, summary, author, license, project URLs, required Python version, keywords, classifiers, and the releas

get_package_version

Get metadata for a specific version of a Python package on PyPI. Returns the summary, required Python version, the full dependency list (requires_dist, i.e. what pip would resolve), and the downloadab

list_releases

List all published version strings for a Python package on PyPI, sorted, plus the latest version. Useful to see a package's release history or check which versions are available to pip install.

get_download_stats

Get recent download counts for a Python package (last day, last week, last month) from pypistats.org. Gauges how popular a pip package is.


Wayback

live

Internet Archive Wayback Machine: retrieve archived web page snapshots, list capture history, and count how many times a URL has been archived.

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

Look up the archived/historical version of a web page in the Internet Archive Wayback Machine. Returns the closest available snapshot (its Wayback URL, timestamp and HTTP status). Pass a timestamp to

list_snapshots

List the captured snapshots of a URL in the Internet Archive Wayback Machine over time, using the CDX index. Each entry includes the capture timestamp, the original URL, HTTP status code, MIME type, c

get_capture_count

Count how many times a URL has been captured by the Internet Archive Wayback Machine, and find when a URL was first and last archived. Returns the total number of captures plus the earliest and latest


Gistemp

live

NASA GISTEMP surface temperature anomaly data: global, hemispheric, and zonal time series (monthly/annual) from the Goddard Institute for Space Studies.

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

NASA GISTEMP surface temperature anomaly time series (degrees C from 1951-1980 baseline). Pick a region (global_land_ocean, global_land_only, northern_hemisphere, southern_hemisphere) and get monthly

get_latest_anomaly

Most recent NASA GISTEMP global land+ocean monthly anomaly, plus how it ranks against history. Returns the latest available month, the anomaly value (degrees C from 1951-1980 baseline), the rank of th

get_zonal_anomalies

NASA GISTEMP annual zonal anomalies (degrees C from 1951-1980 baseline) for 8 latitude bands: global, Northern Hemisphere, Southern Hemisphere, 24N-90N, 24S-24N (tropics), 90S-24S, 64N-90N (Arctic), 4


Outlook / Microsoft 365 Contacts via Graph API: list contacts, fetch full records, and search relevant people for the signed-in user.

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

List contacts from an Outlook / Microsoft 365 address book. Returns compact contact records (name, email addresses, phone numbers, company, job title). Supports keyword search across the contact field

outlook_get_contact

Get the full details of a single Outlook / Microsoft 365 contact by its ID, including display name, all email addresses, business and mobile phone numbers, home address, company name, job title, and d

outlook_search_people

Search the people most relevant to the signed-in Outlook / Microsoft 365 user — colleagues, frequent email contacts, and people in their organization — ranked by relevance. Returns matching people wit

outlook_get_profile

Get the signed-in user's Microsoft 365 / Outlook profile: display name, email address, and user principal name. Use to identify whose contacts and address book are connected.


Microsoft To Do via Graph API: manage task lists, list and retrieve tasks, and find upcoming due items across the signed-in user's to-do lists.

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

List the Microsoft To Do task lists for the signed-in user, with display names and whether each is a well-known list (e.g. the default "Tasks" or flagged-email list). Use to discover a to-do list and

list_tasks

List the tasks in a Microsoft To Do list. Returns compact task summaries (title, status, importance, due date, created/completed times, and a body preview). Optionally filter by status. Use to browse

get_task

Get the full details of a single Microsoft To Do task by its list ID and task ID, including title, status, importance, full body/notes, due date, reminder time, created/completed times, and any checkl

find_due_tasks

Find upcoming, incomplete Microsoft To Do tasks across all of the user's to-do lists that are due within the next N days. Returns a flat list of due reminders with their list name, title, due date, an


Microsoft OneNote via Graph API: browse notebooks and sections, list pages, and read full note content for the signed-in Microsoft 365 user.

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

List the OneNote notebooks in the signed-in user's Microsoft 365 / OneNote account. Returns each notebook's id, display name, created/last-modified times, and whether it is the default notebook. Use t

list_sections

List the sections in a OneNote notebook (Microsoft 365). Pass a notebook_id to list that notebook's sections, or omit it to list all sections across every notebook. Returns each section's id, display

list_pages

List OneNote pages (Microsoft 365 notes). Pass a section_id to list pages in that section, or omit it to list recent pages across all notebooks (newest first). Optionally filter with a free-text searc

get_page_content

Get the full HTML content of a single OneNote page (Microsoft 365 note) by its ID. Returns the page body as HTML. Use after list_pages to read a user's OneNote note in full.


Zoom

live

Zoom via OAuth: list and retrieve scheduled meetings, browse cloud recordings, and get the signed-in user's profile.

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

List Zoom meetings for the signed-in user (upcoming, scheduled, or currently live video calls). Returns compact meeting summaries (id, topic, start time, duration, join URL, timezone). Use to browse a

zoom_get_meeting

Get the full details of a single Zoom meeting by its meeting ID, including topic, start time, duration, timezone, agenda, join URL, status, and key video/security settings (host video, participant vid

zoom_list_recordings

List the signed-in user's Zoom cloud recordings of past meetings and video calls. Returns each recording's id, topic, start time, duration, total size, recording count, and downloadable/playable files

zoom_get_user

Get the signed-in Zoom user's profile: id, email, first/last name, account type, account id, timezone, and personal meeting id (PMI). Use to identify whose Zoom account is connected.


Box

live

Box enterprise cloud storage via OAuth: browse folders, retrieve file metadata, search content, download file text, and check user storage.

ProductivitySaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-box": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/box/mcp"
      ]
    }
  }
}
box_list_folder

List the files and subfolders inside a Box (enterprise cloud storage) folder. Pass a folder id, or omit it to list the root folder ("0"). Returns each item's id, type (file or folder), name, size in b

box_get_file

Get full metadata for a single Box (cloud storage) file by its file id. Returns id, name, size, description, created and modified times, parent folder name, shared link URL, and file extension. Use af

box_search

Search a user's Box (cloud storage) account for files and folders matching a query string across names and content. Optionally restrict to only files or only folders. Returns matching items with id, t

box_get_file_text

Download and return the text content of a Box (cloud storage) file by its file id. Best for plain-text, Markdown, CSV, and other text documents; binary formats (Office docs, PDFs, images) will return

box_get_user

Get the signed-in Box (cloud storage) user's profile: id, name, login email, total storage space (space_amount in bytes), and used storage (space_used in bytes). Use to identify the connected account


Figma

live

Figma design platform via OAuth: access files, pages, nodes, comments, and rendered image exports for the connected account.

ProductivitySaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-figma": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/figma/mcp"
      ]
    }
  }
}
get_me

Get the signed-in Figma user: id, email, handle, and avatar image URL. Use to identify whose Figma account is connected.

get_file

Get a compact summary of a Figma design file by its file key: name, last modified time, version, editor type, role, thumbnail URL, and the list of top-level pages (id, name, type, child count). Use to

list_comments

List comments on a Figma design file. Returns each comment's id, message, author handle, created time, and resolved time. Use to review feedback and discussion on a design.

get_file_nodes

Get specific nodes from a Figma design file by their node ids. Returns a compact map of node id to { name, type }. Use to inspect particular frames, components, or layers within a design file.

get_file_images

Render images of specific nodes in a Figma design file. Returns a map of node id to a rendered image URL. Use to get visual previews (PNG, SVG, or JPG) of frames, components, or layers from a design.


Xero

live

Xero accounting platform via OAuth: list invoices, contacts, accounts (chart of accounts), and pull Profit & Loss reports across connected organisations.

FinanceSaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-xero": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/xero/mcp"
      ]
    }
  }
}
list_organisations

List the Xero organisations (tenants) the connected account can access, with tenant id, name, and type. Xero accounting is multi-tenant — use this first to discover the tenant_id for a specific organi

list_invoices

List invoices and bills from a Xero accounting organisation. Returns compact invoice summaries (number, type, status, contact, dates, total, amount due, currency) for bookkeeping, accounts-receivable,

list_contacts

List contacts (customers and suppliers) from a Xero accounting organisation. Returns name, email, status, and customer/supplier flags. Use for accounting, bookkeeping, and accounts-receivable/payable

get_profit_and_loss

Get the Profit and Loss (income statement) financial report from a Xero accounting organisation for an optional date range. Returns the structured Xero report (report name, date, and row sections cove

list_accounts

List the chart of accounts from a Xero accounting organisation. Returns each account's code, name, type, class, and status. Use to understand an organisation's general ledger structure for bookkeeping


Ecos Kr

live

ECOS — Bank of Korea Economic Statistics System.

FinanceEconomics 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ecos-kr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ecos-kr/mcp"
      ]
    }
  }
}
ecos_key_indicators

Bank of Korea headline economic indicators: M1/M2 money supply, KRW/USD + KRW/JPY exchange rates, base interest rate, CPI, PPI, GDP growth, current account balance, household debt, unemployment, housi

ecos_search_tables

Search Bank of Korea ECOS statistic tables — 800+ official Korean economic series across monetary policy, exchange rates, prices, balance of payments, GDP, real estate, household credit, etc. Returns

ecos_series_items

List the items (sub-series) within a Bank of Korea ECOS statistic table. Most stat_codes have multiple sub-items (e.g., the exchange-rate table has rows per currency: USD, JPY, EUR, ...). Pass the sta

ecos_get_series

Fetch a time series from Bank of Korea ECOS. Pass stat_code + cycle (A/Q/M/D) + start/end period. Date format matches the cycle: yearly = "2024", quarterly = "2024Q3", monthly = "202403", daily = "202


Dart Kr

live

DART — Korea's Data Analysis, Retrieval and Transfer System.

FinanceGovernment 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dart-kr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dart-kr/mcp"
      ]
    }
  }
}
dart_search_filings

AUTHORITATIVE list of recent Korean corporate disclosures filed to DART (Korea's SEC equivalent). Returns rcept_no (receipt ID), rcept_dt (filing date), corp_name, report_nm (disclosure title), corp_c

dart_company_info

Basic profile for a Korean DART-registered company: corp_name (Korean + English), KRX stock_code if listed, CEO name, market tier (KOSPI/KOSDAQ/KONEX/etc.), industry code, address, founding date, fisc

dart_financials

Key annual / interim financial line items for a Korean company's periodic report. Returns income statement, balance sheet, cash flow items with current-period (thstrm) and prior-period (frmtrm / bfefr

dart_major_shareholders

Korean 5%-rule (대량보유) disclosures for a company — every shareholder who has crossed the 5% beneficial-ownership threshold, with subsequent 1%+ changes. Returns shareholder name, holding type, shares h

dart_insider_holdings

Korean executive + 10%-shareholder equity-holding disclosures (임원·주요주주 소유보고). Returns name, role (executive/director/major shareholder), shares held, shares changed since prior report, change reason (


Todoist

live

Todoist task manager via OAuth: list projects, tasks, sections, and labels; retrieve full task details and filter by due date or project.

ProductivitySaaS 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-todoist": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/todoist/mcp"
      ]
    }
  }
}
todoist_list_projects

List all projects in the user's Todoist account. Returns each project's id, name, color, favorite status, web URL, and parent project id. Use to discover projects and their ids before listing tasks or

todoist_list_tasks

List active (incomplete) tasks / to-do items from Todoist. Optionally filter by a project id, or by a Todoist filter query (a powerful query language, e.g. "today | overdue", "p1 & #Work", "no date").

todoist_get_task

Get the full details of a single Todoist task / to-do item by its id, including content, description, project id, section id, priority, due date/datetime, labels, web URL, and creation time. Use after

todoist_list_sections

List the sections within a Todoist project. Sections group tasks inside a project. Returns each section's id, project id, name, and order. Use to understand how tasks in a project are organized.

todoist_list_labels

List all personal labels in the user's Todoist account. Labels are tags applied to tasks. Returns each label's id, name, color, and favorite status. Use to discover labels for filtering or interpretin


Webflow

live

Webflow CMS via OAuth: list sites, collections, and CMS items (blog posts, products, team members) with full field data.

SaaSTechnology 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-webflow": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/webflow/mcp"
      ]
    }
  }
}
list_sites

List all Webflow sites accessible to the connected account. Returns each site's id, display name, short name, preview URL, last published time, and custom domains. Use to discover which Webflow sites

get_site

Get metadata for a single Webflow site by its id, including display name, short name, preview URL, time zone, last published time, and custom domains. Use after list_sites to inspect a specific site b

list_collections

List the CMS collections defined on a Webflow site. Returns each collection's id, display name, slug, singular name, created time, and last updated time. Use to discover the CMS structure of a site be

list_collection_items

List the items (records) in a Webflow CMS collection — the live site content such as blog posts, products, or team members. Returns paginated items with their id, draft/archived status, last published

get_collection_item

Get a single item (record) from a Webflow CMS collection by its id. Returns the item's id, draft/archived status, last published time, and fieldData (the full CMS field values). Use after list_collect


Discord

live

Discord via OAuth: retrieve the authorized user's profile, list servers (guilds), get guild membership details, and view linked external account connections.

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

Get the authorized Discord user's own identity (the connected account). Returns their user id, username, global display name, legacy discriminator, email, verified status, locale, and avatar hash. Thi

list_guilds

List the Discord servers (guilds) the authorized user is a member of. Returns each server's id, name, whether the user owns it, the user's permissions bitfield, the server's feature flags, and approxi

get_guild_member

Get the authorized Discord user's own membership details in a specific server (guild): their server nickname, role ids, join date, and Boost (premium) start date. Reads only the connected user's membe

list_connections

List the authorized Discord user's linked external accounts (connections) — e.g. Steam, Twitch, GitHub, YouTube, Spotify. Returns each connection's type, account id, display name, and verified status.


OpenWeather MCP — wraps the OpenWeatherMap API (openweathermap.org)

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

Get the current weather for a city or coordinates: temperature, "feels like", conditions, humidity, wind speed, and cloud cover. Example: current_weather({ city: "London", units: "metric" })

forecast

Get a multi-step weather forecast (3-hour intervals) for a city or coordinates: temperature, conditions, wind speed, and precipitation probability over time. Example: forecast({ city: "Tokyo", count:

air_quality

Get the current air quality for a set of coordinates: an air quality index (AQI, 1=Good to 5=Very Poor) plus pollutant component concentrations (CO, NO2, O3, PM2.5, PM10, etc.). Example: air_quality({

geocode

Resolve a place name (city, optionally with state/country) to geographic coordinates (latitude/longitude). Useful before calling air_quality, which needs lat/lon. Example: geocode({ query: "Paris", li


Tavily

live

Tavily MCP — wraps the Tavily API (tavily.com)

AI/MLDeveloper 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tavily": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tavily/mcp"
      ]
    }
  }
}
search

AI/LLM-optimized web search built for RAG: returns a synthesized natural-language answer plus a ranked list of sourced results (title, url, content snippet, relevance score). Prefer this over scraping

extract

Extract clean article text from one or more URLs. Strips boilerplate/navigation and returns the readable raw content of each page — ideal for feeding source pages into an LLM. Example: extract({ urls:


Exa

live

Exa MCP — neural/semantic web search + content retrieval (exa.ai)

AI/MLDeveloper 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-exa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/exa/mcp"
      ]
    }
  }
}
search

Neural/semantic web search — find pages by meaning, not just keywords. Returns title, URL, published date, author, and relevance score. Optionally retrieve clean page text inline. Example: search({ qu

get_contents

Retrieve clean, parsed page contents (text) for one or more Exa result IDs or URLs. Use after search to read the full content of pages. Example: get_contents({ ids: ["https://example.com/article"] })

find_similar

Find pages similar to a given URL using neural/semantic matching. Returns title, URL, relevance score, and published date. Example: find_similar({ url: "https://example.com/great-article", num_results


NYT MCP — wraps The New York Times Developer APIs (developer.nytimes.com)

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

Full-text search of New York Times news articles. Returns headlines, abstracts, sections, bylines, and URLs. Example: search_articles({ query: "artificial intelligence", sort: "newest" })

top_stories

Get current New York Times top stories for a section (home, world, business, technology, science, health, sports, arts, etc.). Returns titles, abstracts, bylines, and URLs. Example: top_stories({ sect

books_bestsellers

Get a current New York Times bestselling books list (e.g. hardcover-fiction, hardcover-nonfiction, combined-print-and-e-book-fiction). Returns rank, title, author, description, publisher, and weeks on

movie_reviews

Search New York Times movie reviews. Optionally filter by query or critics picks. Returns title, summary, byline, publication date, and URL. Example: movie_reviews({ query: "dune", critics_pick: true


Geoapify

live

Geoapify MCP — wraps the Geoapify Location Platform (geoapify.com)

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

Forward geocoding: convert an address, place name, or freeform location text into geographic coordinates (latitude/longitude). Returns matched candidates with formatted address, lat, lon, country, cit

reverse_geocode

Reverse geocoding: convert latitude/longitude coordinates into the nearest street address. Returns formatted address, country, city, street, house number, and postcode. Example: reverse_geocode({ lat:

places

Search for places and points of interest (POI) near a location, filtered by Geoapify category. Returns name, formatted address, categories, lat, lon, and distance from the center point. Example: place

routing

Routing / directions: compute the distance and travel time between two points for a given travel mode (drive, walk, bicycle, transit). Returns distance in meters and time in seconds. Example: routing(


Jina Reader API: fetch any web page as clean LLM-ready markdown and run AI-optimized web searches returning markdown results.

AI/MLDeveloper 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-jina_reader": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/jina_reader/mcp"
      ]
    }
  }
}
read_url

Fetch any web page as clean, LLM-ready markdown (strips nav/ads) — ideal for giving an agent the readable content of a URL.

search

Web search returning the top results as markdown. Higher-volume usage may require your own Jina API key (pass via _apiKey).


Firecrawl

live

Firecrawl API (firecrawl.dev): scrape URLs to clean markdown, map all links on a website, and run web searches with optional page content.

DeveloperAI/ML 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-firecrawl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/firecrawl/mcp"
      ]
    }
  }
}
scrape

Scrape a single URL into clean markdown (JS-rendered, main content only)

map

Discover all URLs on a website

search

Web search with optional page content


Serper

live

Serper MCP — wraps the Serper Google Search API (serper.dev)

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

Google web search — organic results, answer box, knowledge graph

news

Google News results

places

Google Maps/local business results


Yelp

live

Yelp Fusion API — search local businesses and restaurants, get details, hours, photos, and customer reviews.

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

Search for local businesses and restaurants on Yelp by term and location. Returns matching businesses with star ratings, review counts, price, categories, address, and phone. Example: search_businesse

get_business

Get full details for a single Yelp business by its id or alias. Returns rating, review count, price, categories, address, phone, hours, photos, and coordinates. Example: get_business({ id: "garaje-san

get_reviews

Get recent Yelp reviews and star ratings for a business by its id or alias. Returns review text, rating, author, and timestamp. Example: get_reviews({ id: "garaje-san-francisco", limit: 3 }).


NewsData.io — latest global news headlines, crypto news, and news source discovery across 70+ countries.

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

Get the latest global news headlines and articles. Filter by keyword, country (2-letter, e.g. "us"), category (business, technology, politics, sports, health, science), and language. Returns article t

crypto_news

Get the latest cryptocurrency news headlines and articles. Filter by keyword, coin ticker(s) (e.g. "btc,eth"), and language. Returns article title, description, link, source, publish date, category, a

news_sources

List available global news sources. Filter by country (2-letter), category, and language. Returns source id, name, url, category, country, and language — useful for discovering which outlets cover a g


TomTom

live

TomTom Search & Routing APIs — geocoding, POI search, reverse geocoding, and traffic-aware directions.

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

Geocoding: convert an address, place name, or free-text location query into geographic coordinates (latitude/longitude). Returns formatted address, country, lat, lon, type, and match score. Example: g

search_poi

Search for points of interest (POIs) — businesses, landmarks, restaurants, gas stations, etc. — by name or category, optionally near a lat/lon center within a radius. Returns name, category, address,

reverse_geocode

Reverse geocoding: convert latitude/longitude coordinates into a human-readable street address. Returns the freeform address, country, municipality, street name, postal code, and position. Example: re

route

Traffic-aware routing / directions: calculate the best route between two points and return distance plus travel time computed with live traffic. Reports traffic delay so you get realistic ETAs, not fr


Visual Crossing Weather MCP — wraps the Visual Crossing Weather Timeline API

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

Get daily weather for a location — works for BOTH historical weather (past dates) and forecast (future or no dates). Use this for HISTORICAL weather and "weather on a past date" questions, e.g. "what

current_conditions

Get the live CURRENT weather conditions right now for a location — temperature, feels-like, humidity, wind, and conditions. Example: current_conditions({ location: "Tokyo" }).

forecast

Get the upcoming 15-day daily weather FORECAST for a location — per-day temp/min/max, humidity, precipitation chance, wind, and conditions. Example: forecast({ location: "Berlin" }).


Tiingo

live

Tiingo financial API — EOD stock prices and metadata, financial news, and crypto OHLCV data.

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

Get EOD historical stock prices for a ticker (open, high, low, close, volume, adjClose). Without a start_date, returns just the latest trading day. Example: stock_prices({ ticker: "AAPL", start_date:

stock_metadata

Get metadata for a stock ticker: company name, description, exchange code, and the date range of available EOD price data. Example: stock_metadata({ ticker: "AAPL" })

news

Get recent financial news articles, optionally filtered by tickers or tags. Returns title, description, URL, published date, source, and related tickers. Example: news({ tickers: "aapl,msft", limit: 1

crypto_prices

Get crypto prices for a pair (open, high, low, close, volume) at a chosen resample frequency. Example: crypto_prices({ ticker: "btcusd", resampleFreq: "1day" })


RAWG

live

RAWG video game database — search games, get ratings and Metacritic scores, browse genres and platforms.

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

Search the RAWG video game database by name, genre, or platform. Returns games with ratings, Metacritic scores, release dates, platforms, and genres. Example: search_games({ query: "zelda", ordering:

get_game

Get full details for a single video game: description, ratings, Metacritic score, platforms, genres, developers, publishers, ESRB rating, and playtime. Example: get_game({ id: "the-witcher-3-wild-hunt

list_genres

List all video game genres in the RAWG database, with game counts per genre (e.g. Action, RPG, Indie, Strategy).

list_platforms

List all gaming platforms in the RAWG database, with game counts per platform (e.g. PC, PlayStation 5, Xbox Series X, Nintendo Switch).


Hunter.io

live

Hunter.io — find professional email addresses by domain or person, and verify email deliverability.

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

Find email addresses for a domain on Hunter.io. Returns the email pattern plus a list of professional/work emails with names, positions, departments, and confidence scores. Example: domain_search({ do

email_finder

Find the most likely professional/work email address for a specific person at a domain on Hunter.io. Returns the email, a confidence score, position, and the number of corroborating sources. Example:

email_verifier

Verify an email address with Hunter.io email verification. Checks deliverability, MX records, SMTP, and whether the address is disposable or webmail. Returns a status, result, and confidence score. Ex


WeatherAPI

live

WeatherAPI.com — current weather, multi-day forecast, astronomy (sunrise/moonphase), and marine conditions.

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

Get current/real-time weather for a location, including temperature, condition, humidity, wind, UV, and air quality (AQI). Location can be a city name, "lat,lon", zip code, or IATA airport code. Examp

forecast

Get a multi-day weather forecast for a location: daily high/low temperature, condition, chance of rain, total precipitation, and sunrise/sunset times. Up to 10 days. Example: forecast({ q: "Tokyo", da

astronomy

Get astronomy data for a location and date: sunrise, sunset, moonrise, moonset, moon phase, and moon illumination. Example: astronomy({ q: "Reykjavik", dt: "2026-06-21" }).

marine

Get marine/ocean conditions forecast for a coastal location: significant wave height, swell height, water temperature, and wind. Up to 7 days, sampled every 6 hours. Example: marine({ q: "33.7,-118.4"


OCR.space

live

OCR.space MCP — wraps the OCR.space API (ocr.space) for image/PDF → text OCR.

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

Extract text from an image or PDF via OCR — pass an image/PDF URL, get the recognized text. Useful for reading screenshots, scanned documents, receipts, signs. Engine 2 is best for most cases.


Podcast Index (podcastindex.org) — open podcast database: search shows, get episode feeds, and discover trending podcasts.

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

Podcast search by term. Find podcasts in the open podcast database by name or keyword. Returns matching podcasts with title, author, description, categories, episode count, and artwork. Example: searc

get_podcast

Get full metadata for a single podcast by its Podcast Index feed ID. Returns title, author, description, owner, episode count, categories, language, and artwork. Example: get_podcast({ feed_id: 920666

episodes

List recent episodes for a podcast by its Podcast Index feed ID. Returns episode title, description, publish date, duration, audio URL, and episode/season numbers. Example: episodes({ feed_id: 920666,

trending

Get trending podcasts across the open podcast database, ranked by recent activity. Optionally filter by language or category. Returns podcast title, author, categories, artwork, and trend score. Examp


API Ninjas

live

API Ninjas — multi-domain data: historical events, commodity prices, inflation rates, exercises, car specs, and animal facts.

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

API Ninjas historical events: notable events from world history. Filter by free-text keyword and/or an exact date (year/month/day). Returns a list of { year, month, day, event } describing what happen

commodity_price

API Ninjas live commodity price: current spot price for a traded commodity. Returns { exchange, name, price, updated }. Supported names include gold, crude_oil, natural_gas, silver, platinum, wheat, c

inflation

API Ninjas inflation: latest monthly and yearly inflation rates by country. Returns a list of { country, type, period, monthly_rate_pct, yearly_rate_pct }. Optionally filter by country name and index

exercises

API Ninjas exercises: fitness/gym exercises filtered by target muscle, type, difficulty, or name. Returns a list of { name, type, muscle, equipment, difficulty, instructions }. Example: exercises({ mu

cars

API Ninjas cars: vehicle specifications by make, model, year, or fuel type. Returns a list of { make, model, year, fuel_type, cylinders, transmission, drive, city_mpg, highway_mpg, class }. Example: c

animals

API Ninjas animals: facts about an animal species by name. Returns a list of { name, taxonomy, locations, diet, habitat, lifespan, top_speed }. Example: animals({ name: "cheetah" }).


IPQualityScore — fraud and risk scoring for IP addresses, emails, phone numbers, and URLs (phishing/malware detection).

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

Fraud detection & risk scoring for an IP address. Answers "is this IP a proxy, VPN, or Tor exit node?", flags bots/crawlers and recent abuse, and returns a 0-100 fraud score plus geolocation (country,

check_email

Email fraud & deliverability check. Validates an email address, detects disposable/temporary addresses, flags emails seen in data leaks, and returns a 0-100 fraud score plus deliverability, SMTP, and

check_phone

Phone number validation & fraud check. Confirms whether a number is valid and active, returns a 0-100 fraud score, and flags VOIP, prepaid, and risky numbers with line type, carrier, and region. Examp

check_url

URL / malware safety scan. Checks whether a URL or domain is unsafe — phishing, malware, spam — and returns a risk score, domain reputation rank, content category, DNS validity, and domain age. Exampl


Scryfall

live

Scryfall MCP — Magic: The Gathering card database.

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

Search Magic: The Gathering (MTG) cards using Scryfall's powerful query syntax (e.g. "c:red type:dragon", "set:neo rarity:mythic", "o:flying cmc<=3"). Returns matching MTG cards with names, types, ora

get_card

Look up a single Magic: The Gathering (MTG) card by name (fuzzy matching). Returns full card details including mana cost, oracle text, colors, prices, legalities, and image.

random_card

Get a random Magic: The Gathering (MTG) card, optionally filtered by a Scryfall query (e.g. "is:commander", "c:blue").

list_sets

List all Magic: The Gathering (MTG) sets/expansions with codes, names, types, release dates, and card counts.


Open Beauty Facts MCP — Open Beauty Facts API (free, no auth, keyless).

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

Beauty product barcode lookup. Get detailed info for a cosmetics or personal care product by barcode (EAN/UPC) from Open Beauty Facts. Returns product name, brand, categories, ingredients, period-afte

search_products

Search cosmetics and personal care products by name or keyword in Open Beauty Facts. Returns matching beauty products with barcode, name, brand, categories, and image. Useful for finding ingredients a


Twitch

live

Twitch Helix API — top games by viewers, live streams, channel search, and user/channel profile lookup.

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

Get the top games currently being streamed on Twitch, ranked by number of viewers. Returns game id, name, and box art. Example: top_games({ first: 20 })

get_streams

Get live Twitch streams, optionally filtered by game name and/or language. Returns streamer name, title, current viewer count, and thumbnail for each live stream. Omit `game` for the overall top live

search_channels

Search Twitch channels/streamers by name or keyword. Returns matching channels with display name, the game they stream, whether they are live now, title, and thumbnail. Example: search_channels({ quer

get_user

Look up a Twitch user/channel by login (username). Returns profile info: id, display name, description, view count, broadcaster type, account creation date, and profile image. Example: get_user({ logi


Recreation.gov API — search US federal campgrounds, recreation areas, and list individual campsites with availability.

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

Search US federal recreation facilities — campgrounds, day-use areas, visitor centers, trailheads — on Recreation.gov. Filter by name/keyword, state, activity (e.g. "camping", "hiking"), or geographic

get_facility

Get full details for a single Recreation.gov facility (e.g. a campground) by its FacilityID. Returns description, directions, ADA access, phone/email, keywords, and coordinates. Example: get_facility(

search_recareas

Search US federal recreation areas — the parent regions (national parks, national forests, BLM/USACE lands) that contain campgrounds and facilities — on Recreation.gov. Filter by name/keyword or state

list_campsites

List the individual campsites within a Recreation.gov facility (campground) by FacilityID. Returns campsite IDs, names, type (e.g. "TENT ONLY", "RV"), loop, reservability, and type of use. Example: li


GSA per diem API — US federal government travel lodging and meal allowances by city or zip code.

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

Get US federal per diem rates (government travel lodging and meal allowances) for a city by name and state. Returns the monthly lodging ceiling (per-diem lodging varies by month/season) and the flat M

rates_by_zip

Get US federal per diem rates (government travel lodging and meal allowances) for a location by zip code. Returns the monthly lodging ceiling (per-diem lodging varies by month/season) and the flat M&I


Product Hunt GraphQL API — today's top startup and product launches, trending rankings, and launch details.

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

Get today's and recent top Product Hunt launches — new product and startup launches. Use this to see what launched today/recently or which products are trending. Returns name, tagline, vote/comment co

get_post

Get full details for a single Product Hunt launch by its slug — description, makers, topics, and vote/comment counts. Use after top_launches to dig into a specific new product / startup launch. Exampl


Merriam-Webster — authoritative American English dictionary definitions and thesaurus (synonyms/antonyms).

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

Look up a word in the Merriam-Webster dictionary — the authoritative American English dictionary. Returns word definitions (short definitions), part of speech (noun, verb, adjective, etc.), pronunciat

thesaurus

Look up a word in the Merriam-Webster thesaurus — the authoritative American English thesaurus. Returns synonyms and antonyms grouped by sense, along with part of speech (noun, verb, adjective, etc.)


OpenLigaDB

live

OpenLigaDB MCP — community-run, keyless football / soccer match data.

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

List all available football / soccer leagues and seasons in OpenLigaDB (German football leagues like the Bundesliga, plus others). Returns league id, name, shortcut, season, and sport.

get_matches

Get football / soccer match results / scores and fixtures for a league and season (e.g. Bundesliga). Optionally narrow to a single matchday. Returns teams, kickoff datetime, final score, and whether e

get_table

Get the league table / standings for a football / soccer league and season (e.g. the Bundesliga table). Returns each team's position, played, won, draw, lost, goals, goal difference, and points.

current_matchday

Get the current matchday's football / soccer matches (results / scores) for a league (e.g. this week's Bundesliga fixtures) in the current season.


Open Charge Map MCP — global EV charging station database (openchargemap.io).

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

Find EV charging stations (electric vehicle chargers) near a location. Returns nearby charging stations with operator, status, available connector types (CCS/CHAdeMO/Tesla connectors), charging speed

get_station

Get full detail for a single EV charging station by its Open Charge Map POI ID. Returns the connector types (CCS/CHAdeMO/Tesla connectors), charging speed (kW), operator, status, plus user comments an


OpenF1

live

OpenF1 MCP — real-time & historical Formula 1 data.

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

List Formula 1 meetings (Grand Prix weekends). Live race data source. Filter by year and/or country. Returns meeting_key, official name, country, circuit, location, date.

get_sessions

List F1 sessions (a Race, Qualifying, or Practice within a Grand Prix weekend). Use to find the session_key needed for drivers/laps. Filter by year, country, session_name ("Race","Qualifying","Practic

get_drivers

List F1 drivers entered in a session (live race data): number, full name, 3-letter acronym, team, team colour, country, headshot. session_key="latest" for the most recent / ongoing session.

get_laps

Lap times / telemetry for an F1 session: per-lap duration, sector times, speed-trap, pit-out flag. Live race data. session_key="latest" for the most recent / ongoing session. Optionally filter by driv


FBI National Stolen Art File — browse and look up stolen/missing artworks under active FBI art theft investigations.

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

Browse or search the FBI National Stolen Art File — stolen and missing artworks under active FBI art theft investigations. Returns artwork UIDs, titles, descriptions, maker/artist, materials, measurem

get_art_crime

Get the full record for a single stolen or missing artwork from the FBI National Stolen Art File by UID. Returns title, full description, crime category, maker/artist, materials, measurements, period,


ThemeParks.wiki MCP — live theme park wait times, schedules, and attraction data.

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

List all theme park destinations (Disney, Universal, Six Flags, SeaWorld, etc.) and their parks. Use this first to discover the PARK entity id, then feed that id to get_wait_times / get_schedule / get

get_wait_times

Live theme park wait times — how long is the wait for an attraction right now. Returns standby and single-rider ride queue minutes plus operating status for every attraction in a park (e.g. Disney / U

get_schedule

Park operating hours — opening and closing times for a theme park over the coming weeks. Pass a PARK entity_id from list_destinations.

get_entity

Metadata for any theme park entity (destination, park, attraction, restaurant, or show): name, type, location, timezone, and parent ids.


LegiScan

live

LegiScan API — full-text search, bill details, and session listings for US state and federal legislation.

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

Full-text search US state (and federal) legislation to find out what bills are about a given topic. Searches one state or nationwide (ALL) and returns matching bills with number, title, state, last ac

get_bill

Get the full detail for a single US legislative bill — status, sponsors (name/party/role), subjects, and links to the bill text. Use the bill_id returned by search_bills. Example: get_bill({ bill_id:

list_sessions

List the legislative sessions for a US state (regular and special), with start/end years and session IDs. Useful to scope which session to track bills in. Example: list_sessions({ state: "NY" })


N2YO

live

N2YO satellite tracking API — live satellite positions, visual pass predictions, and overhead sky inventory.

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

Track where a satellite is right now (or in the next few seconds): get its live latitude, longitude, altitude, and look-angles (azimuth/elevation) from an observer on Earth. Use this to answer "where

get_visual_passes

Find when a satellite will be visible to the naked eye overhead from an observer location (visual passes = bright, sunlit passes against a dark sky). Returns start/max/end times, elevation, azimuths,

whats_above

List what satellites are currently above a location on Earth, within a given radius of the observer's zenith. Use this to answer "what satellites are overhead right now?" Optionally filter by category


Quran

live

Quran MCP — Al-Quran Cloud API.

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

List all 114 surahs (chapters) of the Quran with their Arabic name, English name, English translation, ayah (verse) count, and revelation type (Meccan/Medinan).

get_surah

Get the full text of a surah (chapter) of the Quran by its number (1-114). Returns every ayah (verse) in the chosen edition. Use an English translation edition (e.g. en.asad, en.sahih) for English, or

get_ayah

Get a single ayah (verse) of the Quran by reference — either surah:ayah (e.g. "2:255" for Ayat al-Kursi) or a global ayah number (1-6236). Returns the verse text in the chosen edition (translation lik

search_quran

Search the Quran for a keyword across ayahs (verses). Returns matching verses (up to 30) with their surah (chapter) and ayah number. Defaults to the en.asad English translation; pass another edition t


Islamic prayer times & calendar MCP (Aladhan API). Keyless.

Reference 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-prayer-times": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/prayer-times/mcp"
      ]
    }
  }
}
prayer_times

Islamic prayer times (salah times: Fajr, Sunrise, Dhuhr, Asr, Maghrib, Isha, plus Imsak and Midnight) for a location today. Provide either city+country or latitude+longitude. Returns timings, Gregoria

qibla

Qibla direction (compass bearing toward the Kaaba in Mecca) for a given latitude/longitude, in degrees from true north.

convert_to_hijri

Convert a Gregorian date to the Hijri (Islamic) calendar date. Useful for Islamic calendar date conversion.

hijri_calendar

Monthly Islamic prayer-times calendar for a city: per-day Gregorian and Hijri (Islamic calendar) dates with salah times (Fajr, Dhuhr, Maghrib, Isha).


adsb.lol MCP — live aircraft tracking via community ADS-B.

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

Live aircraft tracking: what planes are flying overhead or near a location right now. Returns real-time ADS-B positions (altitude, ground speed, heading, vertical rate) for every aircraft within a rad

get_aircraft

Track a specific aircraft by its 24-bit ICAO hex address (e.g. "a835af"). Returns the live ADS-B position (lat/lon, altitude, speed, heading) of that exact airframe if it is currently transmitting. Re

find_by_callsign

Track a flight by its callsign (e.g. "UAL123"). Returns the live real-time ADS-B position (lat/lon, altitude, ground speed, heading) of the aircraft currently broadcasting that flight callsign. Live p

military_aircraft

Live military and government aircraft currently being tracked worldwide via ADS-B. Returns real-time positions (lat/lon, altitude, speed, heading) for military/government airframes transmitting right


Bhagavad Gita MCP — Hindu scripture / Vedic text.

Reference 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-bhagavad-gita": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/bhagavad-gita/mcp"
      ]
    }
  }
}
list_chapters

List all 18 chapters of the Bhagavad Gita (Hindu scripture / Vedic text). Returns chapter number, Sanskrit name, transliteration, English meaning, summary, and verse count.

get_chapter

Get one chapter of the Bhagavad Gita (Vedic scripture) by number. Returns the Sanskrit name, transliteration, English meaning, summary, and verse count.

get_verse

Get a single verse (sloka) of the Bhagavad Gita by chapter and verse number. Returns the Sanskrit verse in Devanagari, its transliteration, and English translations from multiple commentators (Sivanan


CelesTrak

live

CelesTrak MCP — satellite orbital elements (TLE / GP data) for any tracked object.

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

Get satellite orbital elements (TLE / GP data) for a single object by NORAD catalog ID.

search_by_name

Search the satellite catalog by name substring and return matching orbital elements (TLE / GP data).

get_group

List orbital elements (TLE / GP data) for an entire CelesTrak group — e.g. the Starlink, GPS,


Cricket

live

Cricket MCP — wraps CricAPI (api.cricapi.com) for live cricket data.

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

List current and recent cricket matches (Test/ODI/T20) with live scores, teams, venue, and status. Use this for "what cricket matches are live/on right now". Returns match IDs usable with match_info.

match_scores

Get a lightweight feed of live cricket scores across current matches. Returns each match as a compact "team1 vs team2" with running scores and status. Best for quick live cricket score checks.

search_players

Search for cricket players by name. Returns player IDs, names, and country. Use this to look up a cricketer before fetching more detail.

match_info

Get full information and scorecard for a single cricket match (Test/ODI/T20) by its match ID. Returns teams, venue, innings scores, toss, and winner. Get the id from current_matches.


ESPN

live

ESPN MCP — keyless multi-sport live scores, teams, and news via ESPN's public site API.

SportsNews 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-espn": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/espn/mcp"
      ]
    }
  }
}
get_scoreboard

Live sports scores: NFL/NBA/MLB/NHL/soccer/college scores for today's games and results.

get_teams

List all teams (rosters/franchises) for a league: names, abbreviations, locations, and colors.

get_news

Latest sports news headlines for a league: NFL/NBA/MLB/NHL/soccer/college articles with summaries and links.

get_standings

League standings / table: win-loss records, win %, games behind (and points/draws for soccer), grouped by conference/division. PREFER for "NBA standings", "Premier League table", "NFL division standin

get_team_schedule

A team's schedule — upcoming and recent games with dates, opponents, and (for finished games) scores and result. PREFER for "when do the Lakers play next", "<team>'s schedule", "<team> recent results"


EPSS

live

FIRST.org EPSS (Exploit Prediction Scoring System) MCP.

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

EPSS exploit-probability for one or more CVEs. Returns each CVE's EPSS score (0-1 = probability it will be exploited in the wild in the next 30 days) and percentile (how it ranks vs all CVEs). Use to

top_exploited

List the CVEs most likely to be exploited, ranked by EPSS score descending. Answers "which vulnerabilities are most likely to be exploited right now" so you can prioritize patching. EPSS is the probab


Harry Potter API MCP (hp-api.onrender.com) — keyless.

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

List Harry Potter characters (wizards, witches, and other figures). Optionally filter by Hogwarts house (Gryffindor, Slytherin, Hufflepuff, Ravenclaw) and/or a name substring.

list_students

List all Hogwarts students from the Harry Potter universe.

list_staff

List all Hogwarts staff (professors and other employees) from the Harry Potter universe.

list_spells

List Harry Potter spells with their effects. Optionally filter by a spell-name substring.


APIs.guru

live

APIs.guru MCP — keyless directory of 2,500+ public APIs and their OpenAPI specs.

DeveloperTechnologyReference 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-apis-guru": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/apis-guru/mcp"
      ]
    }
  }
}
search_apis

Search the APIs.guru directory of 2,500+ public APIs by free-text query. Matches against the API's name/key, its title, description, and categories. Returns a list of matching APIs each with name (the

get_api

Get the full directory entry for one API by its exact APIs.guru name/key (e.g. "stripe.com" or "googleapis.com:calendar"). Returns every version of that API with its info (title, description, provider

list_providers

List all API providers (domains like "googleapis.com", "azure.com", "amazonaws.com") tracked in the APIs.guru directory. Returns { count, providers }. Use this to browse the directory by organization

get_metrics

Get aggregate statistics for the entire APIs.guru directory, e.g. total number of APIs, providers, endpoints, and specs (numAPIs, numEndpoints, numSpecs, ...). Use this for a high-level summary of how


Horoscope

live

Horoscope App API — daily, weekly, and monthly zodiac horoscope predictions for all 12 signs. Keyless.

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

Get the daily horoscope for a zodiac sign. Returns the prediction text for a given day (today, tomorrow, yesterday, or a specific YYYY-MM-DD date). Useful for "what is my horoscope today" style questi

weekly_horoscope

Get the weekly horoscope for a zodiac sign. Returns the prediction text covering the current week.

monthly_horoscope

Get the monthly horoscope for a zodiac sign. Returns the prediction text for the current month plus challenging and standout days.


Color Pizza MCP — names hex colors using human-friendly color-name lists.

DeveloperReference 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-color-pizza": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/color-pizza/mcp"
      ]
    }
  }
}
name_colors

Find the nearest human-friendly color name for one or more hex colors. Pass hex codes (with or without leading #), comma-separated for several at once. Returns the closest named color for each input,

search_color_names

Search named colors whose name contains a substring (e.g. "blue", "rose", "teal"). Returns matching color names with their hex codes. Optionally restrict to a specific naming list (see list_palettes).

list_palettes

List all available color-name lists (palettes) with their titles, descriptions, color counts, and licenses. Use this to discover valid values for the "list" argument of name_colors and search_color_na


OEIS

live

OEIS — search and retrieve integer sequences from the On-Line Encyclopedia of Integer Sequences by terms or A-number.

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

Search the OEIS (On-Line Encyclopedia of Integer Sequences), the authoritative database of integer sequences. Identify a sequence from its first terms by passing a comma-separated list of integers (e.

get_sequence

Fetch a single OEIS integer sequence by its A-number (e.g. "A000045" for the Fibonacci numbers, "A000040" for the primes). Accepts the A-number with or without the "A" prefix and zero-padding ("A00004


Jisho

live

Jisho.org Japanese-English dictionary MCP (keyless).

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

Search the Jisho.org Japanese<->English dictionary. The keyword can be English (translate to Japanese), Japanese kanji/kana, or romaji. Returns up to `limit` matching dictionary entries, each with the

lookup

Look up a single Japanese or English word in the Jisho.org dictionary and return only the single best/first matching entry in a compact form: headword (slug), common-ness, JLPT level, all readings, a


Disney

live

Disney character database — search and browse official Disney characters with their films, TV shows, video games, park attractions, and imagery.

EntertainmentFilm/TV 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-disney": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/disney/mcp"
      ]
    }
  }
}
search_characters

Search the Disney character database by name (e.g. "Mickey Mouse", "Elsa", "Stitch"). Returns matching characters with their film, TV-show, video-game and theme-park-attraction appearances plus an ima

get_character

Fetch a single Disney character by numeric id (_id). Returns the full record: films, short films, TV shows, video games, park attractions, allies, enemies, image URL and source URL.

list_characters

List/paginate the Disney character database. Returns a page of characters (id, name, image URL) plus total count and total page count. Useful for browsing the full catalog.


Speedrun.com — search games, browse run categories, and fetch world-record leaderboards from the speedrunning community database.

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

Search the Speedrun.com database for games by name. Returns matching games with their ID (needed for get_categories and get_leaderboard), abbreviation, release year, and weblink. Example: search_games

get_categories

List the run categories for a game (e.g. "Any%", "100%", "Glitchless"). Use the game ID from search_games. Each category has an ID needed to fetch a leaderboard via get_leaderboard. Example: get_categ

get_leaderboard

Fetch the world-record / top-N leaderboard for a specific game category. Returns ranked runs with finish times (ISO-8601 duration plus seconds), run date, players, and weblink. Get game_id from search

find_user

Look up a speedrunner by username. Returns matching users with their ID, display name, and profile weblink. Example: find_user({ name: "cheese05" })


MyDisease.info — query and retrieve aggregated disease annotations (MONDO/DOID/OMIM IDs) from the BioThings disease knowledgebase.

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

Search MyDisease.info for diseases by free-text name or fielded query. Returns matching hits, each keyed by a MONDO disease id (e.g. "MONDO:0015967") with the best-matching ontology and annotation key

disease

Fetch the full aggregated annotation object for a single disease id. Accepts MONDO ("MONDO:0015967"), DOID ("DOID:9351"), OMIM ("OMIM:125853") and other supported ontology ids. Returns cross-reference

metadata

Dataset statistics and release metadata for MyDisease.info (source versions, document counts).


MyVariant.info — search and retrieve aggregated human genetic variant annotations (dbSNP, ClinVar, gnomAD, etc.) by rsID or HGVS id.

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

Search aggregated human genetic-variant annotations on MyVariant.info. Accepts an rsID ("rs58991260"), an HGVS id ("chr1:g.218631822G>A"), or a fielded query ("dbnsfp.genename:CDK2", "clinvar.rcv.clin

variant

Get the full merged annotation for a single human genetic variant by its HGVS id (e.g. "chr7:g.140453136A>T"). Returns annotations aggregated from dbSNP, ClinVar (pathogenicity / clinical significance

metadata

Dataset statistics and source/release metadata for MyVariant.info (available data sources, build versions, total variant counts).


MyChem.info — search and retrieve aggregated drug/chemical annotations (ChEMBL, DrugBank, PubChem) by name, InChIKey, or fielded query.

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

Search MyChem.info for drugs / chemical compounds. Accepts a plain drug name ("aspirin"), an InChIKey, or a fielded query (e.g. "chembl.pref_name:aspirin", "drugbank.name:Acetylsalicylic acid"). Retur

chem

Fetch the full aggregated annotation for a single chemical / drug by id. The id is typically an InChIKey (e.g. "BSYNRYMUTXBXSQ-UHFFFAOYSA-N"), but a DrugBank id, ChEMBL id, or other source id also wor

metadata

Dataset statistics and source/release metadata for MyChem.info.


TheAudioDB

live

TheAudioDB MCP — community music metadata database.

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

Search TheAudioDB for a music artist/band by name. Returns metadata: genre, style, mood, year formed, country, official website, English biography, and artist thumbnail image URL. Music-metadata looku

search_album

Search TheAudioDB for albums by artist (optionally narrowed to a specific album title). Returns album id, title, artist, release year, genre, album cover artwork URL, and English description. Omit the

get_artist

Look up a single TheAudioDB artist by its idArtist (as returned by search_artist). Returns the same metadata fields as search_artist: genre, style, mood, formed year, country, website, biography, and

get_album_tracks

List all tracks on a TheAudioDB album by its idAlbum (as returned by search_album). Returns each track id, title, track number, duration in milliseconds, genre, and music-video URL when available.


OpenIBAN

live

OpenIBAN — validate IBAN checksums, resolve bank name/BIC/city, and suggest corrections for mistyped IBANs. Keyless.

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

Validate an IBAN: check its checksum and (where supported) its bank code, and resolve the bank name, BIC, and city. Returns whether the IBAN is structurally valid plus bank details when available. Bes

suggest_iban

Suggest corrected IBANs for a possibly-mistyped IBAN. Returns a list of candidate IBANs with validity and bank name/BIC. Coverage is limited; if no suggestions are available this returns an error fiel


Abgeordnetenwatch MCP — German federal & state parliament data.

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

List German parliaments tracked by Abgeordnetenwatch: the federal Bundestag, all 16 state Landtage, and the EU parliament. Returns id, short name and full official name for each. Use the ids to scope

search_politicians

Search German federal and state politicians by name (surname or partial surname, contains-match). Returns matching politicians with party, year of birth and sex. Example: name "Scholz" or "Merz". Use

get_politician

Get the full profile of a single German politician by Abgeordnetenwatch id: name, party, year of birth, sex, education and residence. Get the id from search_politicians.

list_polls

List recorded parliamentary votes/polls (Abstimmungen) with their title and date. Optionally scope to a single legislative period via period_id (a parliament-period id). Returns most recent polls firs


Arbeitnow

live

Arbeitnow — search and browse European (Germany-heavy) job postings including English-speaking and visa-sponsorship roles. Keyless.

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

List recent job postings from Arbeitnow, a keyless European (Germany-heavy) job board with many English-speaking and visa-sponsorship roles. Returns one page of postings in reverse-chronological order

search_jobs

Keyword-search recent Arbeitnow job postings (keyless European/German job board, many English-speaking & visa-sponsor roles). The upstream API has no search param, so this scans the most recent pages

get_job

Fetch the full details of a single Arbeitnow job posting by its slug, INCLUDING the full HTML description. There is no single-job endpoint upstream, so this scans the most recent pages (~3) to find th


RemoteOK

live

RemoteOK MCP — remote-work job board (tech-heavy), keyless.

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

List the most recent remote jobs from RemoteOK (a popular, tech-heavy remote-work job board; keyless). Returns the newest postings (id, position, company, location, tags, salary range, date, url) with

search_jobs

Keyword-search current RemoteOK remote-job listings. Matches the query (case-insensitive) against job position, company name, or any tag. Tech-heavy board; keyless. Returns matching postings (id, posi

get_job

Get the full RemoteOK job posting for a given job id, including the full HTML description. Use an id returned by list_jobs or search_jobs. Only jobs in the current ~100 most-recent listings are availa


Energi Data Service (Energinet) MCP — Denmark's official open energy data.

EnergyClimateEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-energi-data-dk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/energi-data-dk/mcp"
      ]
    }
  }
}
spot_prices

Day-ahead electricity spot prices from Energi Data Service (Energinet, Denmark/Nordic).

co2_intensity

Real-time grid CO2 emission intensity (grams CO2 per kWh) from Energi Data Service (Energinet, Denmark),

query_dataset

Generic escape hatch for any of the ~100 Energi Data Service (Energinet, Denmark) datasets.


Elexon BMRS Insights MCP — Great Britain electricity grid & market data.

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

Great Britain half-hourly electricity generation by fuel type (Elexon BMRS FUELHH dataset). Returns MW generated per fuel (CCGT/gas, COAL, NUCLEAR, WIND, BIOMASS, NPSHYD hydro, PS pumped-storage, OCGT

system_demand

Great Britain electricity system demand outturn (Elexon BMRS ITSDO — Initial Transmission System Demand Outturn) over a datetime window. Returns demand in MW per half-hourly settlement period. Keyless

query_dataset

Generic escape hatch for any Elexon BMRS Insights dataset (e.g. MID market index/day-ahead prices, DGWS actual wind/solar generation, FUELHH generation by fuel). Pass a dataset code and a datetime win


KEGG

live

KEGG REST MCP — Kyoto Encyclopedia of Genes and Genomes.

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

Search KEGG by keyword. KEGG is the authoritative bioinformatics database for compounds, drugs, diseases, metabolic pathways, genes, and enzymes. Pick a database (compound|drug|disease|pathway|genes|e

get_entry

Fetch a full KEGG flat-file entry by ID and return it as parsed fields plus raw text. IDs look like "C00031" (compound), "hsa00010" (pathway), "D00009" (drug), "K00844" (KO/ortholog), or "ec:1.1.1.1"

list_database

List all entries in a KEGG database (id + description). Useful for enumerating things like KEGG pathways ("pathway"), drugs ("drug"), or supported organisms ("organism"). Results are capped at 100 wit


InterPro

live

InterPro MCP (EBI) — protein family / domain / functional-site classification.

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

Search InterPro for protein families, domains, repeats and functional sites by keyword (text search over entry names/accessions). InterPro is EBI's integrated protein-signature classification (Pfam, P

get_entry

Get full details for a single InterPro entry by accession (e.g. "IPR000001"). Returns the entry name, type, a plain-text description, member-signature/protein counters, and associated GO terms (molecu

entries_for_protein

List all InterPro entries (families, domains, sites) found on a given UniProt protein, by UniProt accession (e.g. "P12345"). Returns each matching InterPro signature with accession, name and type. Use


GDC

live

NCI Genomic Data Commons — browse cancer genomics projects (TCGA, TARGET, CPTAC), search cases by primary site, and find genomic data files. Keyless.

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

List NCI Genomic Data Commons cancer-genomics projects (TCGA, TARGET, CPTAC, etc.), ranked by case count. Returns project_id, name, program, primary site(s) and disease type(s). Keyless, open-access m

get_project

Look up a single NCI GDC project by project_id (e.g. "TCGA-BRCA") and get its details plus summary counts (case_count, file_count). Keyless, open-access metadata.

search_cases

Search NCI GDC cancer cases (patients/samples) by primary site and/or project. Returns case_id, submitter_id, primary site, disease type and project_id. Keyless, open-access metadata.

search_files

Search NCI GDC genomic data files by project and/or data category (e.g. "Transcriptome Profiling", "Simple Nucleotide Variation", "DNA Methylation"). Returns file_id, file_name, data category/type/for


Macrostrat

live

Macrostrat MCP — geologic map / column / unit data for North America and beyond.

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

Find geologic rock units from Macrostrat by location + age, by stratigraphic name, or by lithology.

find_columns

List Macrostrat stratigraphic columns near a geographic point. Provide lat and lng (decimal degrees).

define_lithology

Look up Macrostrat lithology definitions. Provide a lith name (e.g. "granite", "limestone") to match, or omit to list all lithologies (capped at 50).


Paleobiology Database (PBDB) MCP — the global fossil record. Keyless.

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

Find fossil occurrences for a taxon from the Paleobiology Database (the global fossil record). Returns occurrences with collection locations (lat/lng, country) and geologic ages. base_name matching in

get_taxon

Look up a single taxon in the Paleobiology Database: its taxonomic rank, attribution (author + year), first/last appearance intervals and ages (in millions of years, Ma), and number of subtaxa. Keyles

list_subtaxa

List the direct child taxa (subtaxa) of a taxon from the Paleobiology Database, with each child's rank and number of its own subtaxa. Keyless.


NCI CACTUS

live

NCI CACTUS Chemical Identifier Resolver MCP.

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

NCI CACTUS chemical identifier resolver. Convert one chemical identifier (a drug/chemical name, CAS number, SMILES, InChI, or InChIKey) into a single representation: smiles (canonical SMILES), stdinch

identify

NCI CACTUS one-shot lookup: given any chemical identifier (name, CAS, SMILES, InChI, or InChIKey), return SMILES, InChIKey, IUPAC name, molecular formula, molecular weight, and CAS number in a single


WoRMS

live

WoRMS (World Register of Marine Species) MCP — keyless.

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

Resolve a marine species or genus name to its WoRMS AphiaID, accepted name, authority, status (accepted/unaccepted), rank, and high-level classification (kingdom/family/genus). WoRMS is the authoritat

get_classification

Walk the full taxonomic lineage (root → tip) for a WoRMS AphiaID: returns a flat ordered array of { rank, name, aphia_id } from superdomain down to the taxon itself. Keyless.

get_common_names

Get common (vernacular) names for a WoRMS AphiaID across languages. Keyless.


OBIS

live

OBIS — find georeferenced marine species occurrence records and biodiversity statistics from the Ocean Biodiversity Information System. Keyless.

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

Resolve a marine species/genus/family name against OBIS to its taxon record (taxon ID, rank, accepted name, kingdom/phylum/family/genus, and total occurrence-record count). OBIS = global ocean biodive

find_occurrences

Find georeferenced marine occurrence records (latitude, longitude, date, depth, country, locality, basis of record) for a scientific name from OBIS. Optionally filter by date range. Returns the total

get_statistics

Get aggregate OBIS statistics for a marine taxon: total occurrence records, distinct species/taxa, contributing datasets, and the observed year range.


ITIS

live

ITIS — search authoritative US-government taxonomy for plants, animals, fungi, and microbes; walk hierarchies and get common names by TSN. Keyless.

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

Search ITIS (authoritative US-government integrated taxonomy for plants, animals, fungi, and microbes) by scientific name and resolve it to TSNs (Taxonomic Serial Numbers). Returns matching taxa with

get_hierarchy

Walk the full taxonomic hierarchy (lineage) for a TSN from ITIS — kingdom down to the taxon and its children. Returns each rank with its tsn, name, rank, and parent_tsn. Pass a TSN from search_taxa. K

get_common_names

Get vernacular (common) names in all languages for a TSN from ITIS, e.g. "Bobcat", "lynx roux". Pass a TSN from search_taxa. Keyless.


cBioPortal

live

cBioPortal — search public cancer genomics studies (TCGA, CPTAC, MSK), resolve genes, and browse cancer types from the Memorial Sloan Kettering portal.

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

Search public cancer genomics studies in cBioPortal (TCGA, CPTAC, MSK, etc.) by keyword. Matches study name, study id, or cancer-type id (case-insensitive). Returns study ids, names, cancer types, and

get_study

Get full details for one cBioPortal cancer study by its study id (e.g. "brca_tcga_pub", "glioma_mskcc_2019"), including description, cancer type, sample count, PMID, and citation.

get_gene

Resolve a gene to its Entrez gene id and canonical info via cBioPortal. Accepts a HUGO symbol (e.g. "TP53", "BRCA1") or an Entrez gene id. Returns entrez_gene_id, symbol, and type.

list_cancer_types

List cancer types defined in cBioPortal (id, display name, parent type). Useful for resolving cancer-type ids used by studies.


GWAS Catalog (EBI/NHGRI) — look up SNPs by rsID, retrieve trait/disease associations with effect sizes, and find genome-wide association studies by trait.

BiologyHealthScience 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gwas-catalog": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gwas-catalog/mcp"
      ]
    }
  }
}
get_snp

GWAS Catalog: look up a single-nucleotide polymorphism (SNP) by rsID. Returns functional class, chromosome/region locations, and mapped genes (with up/downstream + distance). Keyless, from EBI/NHGRI.

snp_associations

GWAS Catalog: get trait/disease associations for a SNP (rsID) — risk allele, p-value, odds ratio per copy, beta/effect size, and risk allele frequency. Keyless, from EBI/NHGRI.

studies_by_trait

GWAS Catalog: find genome-wide association studies for a disease/trait (EFO trait, e.g. "asthma" or "type 2 diabetes"). Returns accession, PubMed ID, title, journal, date, sample size. Keyless, from E


ListenBrainz (MetaBrainz) — access open music listening data: sitewide top artists, user scrobble history, now-playing, and per-user top artists. Keyless.

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

ListenBrainz sitewide top artists (open music listening data, MetaBrainz/MusicBrainz-linked). Most-listened artists across all users for a time range. Keyless.

user_listens

A ListenBrainz user's recent listens (track scrobbles), newest first. Open music listening data, MusicBrainz-linked. Keyless for public profiles.

now_playing

What a ListenBrainz user is listening to right now (the currently-playing track, if any). Open music listening data. Keyless for public profiles.

user_top_artists

A ListenBrainz user's top (most-listened) artists for a time range. Open music listening data, MusicBrainz-linked. Keyless for public profiles. Stats may be unavailable if not yet computed.


PeeringDB

live

PeeringDB — look up internet networks by ASN/name, find internet exchanges by city/country, and discover colocation facilities for peering decisions.

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

Look up networks in PeeringDB by name or ASN. Returns peering policy (Open/Selective/Restrictive), traffic level, info type (Content/NSP/ISP/Enterprise), scope, and IPv4/IPv6 prefix counts. Provide a

search_exchanges

Find internet exchanges (IXes) in PeeringDB by name, city, or country (2-letter code). Returns the IX name, location, continent region, member network count, and website. Provide at least one of query

search_facilities

Find colocation facilities (data centers) in PeeringDB by name, city, or country (2-letter code). Returns the facility name, location, network count, street address, and website. Provide at least one


macvendors.com — resolve a MAC address or OUI prefix to the hardware manufacturer name. Keyless, rate-limited free tier.

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

macvendors.com = MAC address → hardware manufacturer (OUI) lookup; pass a full MAC or just the first 6 hex digits. Keyless; free tier is rate-limited to ~1 request/second.


Dryad

live

Dryad (datadryad.org) MCP — keyless.

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

Search Dryad, a curated repository of open research datasets (mostly the data underlying published, peer-reviewed studies in any field of science). Full-text query over titles, abstracts, authors and

get_dataset

Fetch a single Dryad dataset by its DOI (e.g. "doi:10.5061/dryad.hx3ffbgjj" or "10.5061/dryad.hx3ffbgjj"). Returns full metadata — title, authors, abstract, keywords, publication date, field of scienc


OSF

live

Open Science Framework (OSF) — search and retrieve public research projects and preprints from the Center for Open Science repository. Keyless.

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

OSF (Open Science Framework, by the Center for Open Science): search public research projects ("nodes") by title. Returns id, title, description, category, creation date, and tags. Keyless public data

get_project

OSF: fetch metadata for a single public research project (node) by its OSF id (e.g. "abc12"). Returns title, description, category, dates, tags, and public flag.

search_preprints

OSF: search public preprints by title (Open Science Framework, by the Center for Open Science). Returns id, title, description, publication date, DOI, and tags. Keyless public data; the API can be slo


eLife

live

eLife MCP — keyless open-access life-sciences & biomedical journal articles.

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

Search eLife — the open-access journal for life sciences & biomedicine — for articles by keyword (gene, disease, method, organism, author, etc.). Returns matching articles with id, title, type, DOI, p

get_article

Get the full metadata and abstract for a single eLife article by its id (e.g. "107545"). Returns title, DOI, type, publication date, authors, abstract, and subjects. Keyless.

latest_articles

List the most recently published eLife articles (newest first). eLife is the open-access journal for life sciences & biomedicine. Returns id, title, type, DOI, publication date, and authors. Keyless.


OpenDota

live

OpenDota keyless API — Dota 2 hero meta, professional match results, and player profiles/rankings.

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

Dota 2 hero meta: per-hero pick/win/ban counts in pro play, primary attribute, attack type, and roles. Optionally filter by role (e.g. "Carry", "Support"). OpenDota keyless data.

pro_matches

Recent professional Dota 2 matches: teams, league, winner, score and duration. OpenDota keyless data.

search_players

Search Dota 2 players by persona (display) name. Returns matching account IDs and similarity scores. OpenDota keyless data; may be empty if rate-limited.

get_player

Dota 2 player profile by account ID: name, country, rank tier, leaderboard rank, and win/loss totals. OpenDota keyless data.


VALORANT

live

valorant-api.com reference data — VALORANT agents, weapons, and maps with abilities, costs, and tactical details.

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

VALORANT reference data (valorant-api.com) — list playable agents with their roles and abilities. Static game data, keyless. Optionally filter by role.

get_agent

VALORANT reference data (valorant-api.com) — full details for one agent by uuid: description, role, role description, and all abilities. Static game data, keyless.

list_weapons

VALORANT reference data (valorant-api.com) — list weapons with category, cost, fire-rate, and magazine size. Static game data, keyless.

list_maps

VALORANT reference data (valorant-api.com) — list maps with tactical description and icon. Static game data, keyless.


WikiPathways open community database — search and retrieve biological pathways mapping genes, proteins, and metabolites.

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

Search WikiPathways (open community pathway database) for biological pathways by name. Pathways map genes/proteins/metabolites in processes like glycolysis, apoptosis, or signaling. Optionally restric

list_pathways

List all WikiPathways pathways for a single organism. Give a Latin or common name, e.g. "Homo sapiens", "human", or "mouse". Returns each pathway's id, name, link, and last revision. Keyless.

get_pathway

Get metadata and a viewer link for one WikiPathways pathway by its WikiPathways id (e.g. "WP554"). Returns name, species, revision, and a human-viewable diagram URL. Keyless.


Tomorrow.io Weather API — real-time conditions and hourly/daily forecasts for any location worldwide.

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

Get current/real-time weather conditions for a location — temperature, feels-like, humidity, wind, precipitation probability, cloud cover, UV index, and visibility. Location can be "lat,lon" coordinat

forecast

Get a daily or hourly weather forecast for a location. Returns a list of forecast periods with conditions, temperatures, precipitation probability, and wind. Location can be "lat,lon" coordinates or a


Saccharomyces Genome Database (SGD) — yeast (S. cerevisiae) gene lookups, search, and Gene Ontology annotations.

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

Look up a single yeast (S. cerevisiae) gene/locus in SGD (Saccharomyces Genome Database, the authoritative budding-yeast genetics resource). Accepts a systematic name (e.g. YAL001C), a standard gene n

search_genes

Search SGD (Saccharomyces Genome Database, the authoritative budding-yeast / S. cerevisiae genetics resource) for genes, loci, alleles, and other entities by free-text query. Returns matching hits wit

get_gene_go

Get Gene Ontology (GO) annotations for a yeast (S. cerevisiae) gene/locus from SGD (Saccharomyces Genome Database). Accepts a systematic name (e.g. YAL001C), a standard gene name (e.g. TFC3), or an SG


EBI Expression Atlas — search and retrieve metadata for ~4,500 curated gene/protein expression experiments across species and tissues.

BiologyScience 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-expression-atlas": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/expression-atlas/mcp"
      ]
    }
  }
}
search_experiments

Search EBI Expression Atlas — ~4,500 curated gene/protein expression experiments (baseline & differential) across species, tissues, and conditions. Filter by keyword (matches description/experimental

get_experiment

Get metadata for a single EBI Expression Atlas experiment by accession (e.g. "E-MTAB-4045"). Returns accession, description, species, type, assay count, and experimental factors.


OSM Taginfo MCP — statistics on OpenStreetMap tags (keys and key=value pairs).

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

OSM Taginfo: list the most common values for an OpenStreetMap key, by frequency (e.g. all amenity= values from "parking" down). Useful for understanding how features are tagged in OSM. Keyless.

tag_stats

OSM Taginfo: get usage counts (all / nodes / ways / relations) for a specific OpenStreetMap key=value tag, e.g. amenity=cafe. Keyless.

search_keys

OSM Taginfo: search OpenStreetMap keys by text, ranked by total usage. Useful for discovering how features are tagged in OSM. Keyless.


Human Protein Atlas (HPA) — search human genes/proteins and retrieve tissue expression profiles and protein class annotations.

BiologyHealth 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-protein-atlas": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/protein-atlas/mcp"
      ]
    }
  }
}
search_genes

Search the Human Protein Atlas for human genes/proteins by gene symbol or keyword. Returns each gene with its Ensembl gene id (needed by get_protein and top_tissues), synonyms, and description. Keyles

get_protein

Get a trimmed Human Protein Atlas profile for one protein by Ensembl gene id (e.g. "ENSG00000146648"): gene, description, protein class, biological process, molecular function, RNA tissue specificity/

top_tissues

List a protein's top-expressing human tissues by RNA expression (nTPM), highest first, for one Ensembl gene id. Use search_genes to find the Ensembl id. Keyless.


EBI PRIDE Archive MCP — proteomics (mass-spectrometry) data repository.

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

Search EBI PRIDE Archive — the largest public proteomics/mass-spectrometry dataset repository — for projects by keyword (disease, organism, technique, protein, instrument). Returns matching project ac

get_project

Get full metadata for one PRIDE Archive proteomics project by accession (e.g. "PXD000001"): title, description, sample-processing and data-processing protocols, organisms, organism parts, diseases, in


PomBase MCP — the fission yeast (Schizosaccharomyces pombe) model-organism database.

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

PomBase (fission yeast / S. pombe model-organism DB): look up a gene by its PomBase systematic id and return its product, protein domains (InterPro), deletion viability, UniProt id, and curation statu

get_reference

PomBase: look up a curated S. pombe publication by its PubMed id (e.g. "PMID:11739790") and return its title, citation, authors, year, abstract, and how many genes it annotates. Keyless.


EBI MetaboLights metabolomics repository — search and retrieve study metadata for metabolite/small-molecule experiments.

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

Search EBI MetaboLights, the metabolomics (metabolite / small-molecule) study repository, by keyword — disease, metabolite, organism, or analytical technique (e.g. "diabetes", "glucose NMR", "Homo sap

get_study

Fetch metadata for a single MetaboLights study by its accession (e.g. "MTBLS1"): title, full description, and the organisms studied (species + tissue/part). Keyless.


IUPHAR/BPS Guide to PHARMACOLOGY (GtoPdb) MCP — keyless.

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

Search the Guide to PHARMACOLOGY (IUPHAR/BPS) — an expert-curated pharmacology database — for drug ligands by name. Returns matching ligands with their GtoPdb ligand id, type (e.g. Synthetic organic,

search_targets

Search the Guide to PHARMACOLOGY (IUPHAR/BPS) — an expert-curated pharmacology database — for protein targets by name. Returns matching targets with their GtoPdb target id, abbreviation, and type (e.g

target_interactions

List the quantitative ligand interactions for a protein target in the Guide to PHARMACOLOGY (IUPHAR/BPS). Given a GtoPdb target id (from search_targets), returns the ligands acting on it with interact

ligand_interactions

List the quantitative target interactions for a drug ligand in the Guide to PHARMACOLOGY (IUPHAR/BPS). Given a GtoPdb ligand id (from search_ligands), returns the protein targets it acts on with inter


QuickGO (EBI) MCP — Gene Ontology browser.

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

QuickGO (EBI) — search Gene Ontology (GO) terms by keyword. Returns matching GO terms (id + name) for a free-text query like "apoptosis". Keyless.

get_term

QuickGO (EBI) — get a single Gene Ontology (GO) term by id. Returns its name, aspect (biological_process|molecular_function|cellular_component), definition, synonyms, and obsolete flag. Keyless.

gene_annotations

QuickGO (EBI) — list the Gene Ontology (GO) annotations for a gene/protein, identified by UniProt accession (e.g. "P04637"). Returns GO ids, names, aspect, evidence, and taxon. Keyless.


IntAct

live

IntAct (EBI) molecular-interaction database MCP. Keyless.

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

IntAct (EBI) molecular-interaction database — find protein-protein and other molecular interactions for a gene/protein (by name or UniProt id), with detection method, interaction type, organism, PubMe

interaction_count

IntAct (EBI) — fast count of how many molecular interactions a gene/protein (by name or UniProt id) has. Keyless.


Rhea MCP — expert-curated database of biochemical reactions.

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

Search Rhea, the expert-curated database of biochemical reactions (the reaction reference used by UniProt and KEGG). Find enzyme/metabolic reactions by compound name, ChEBI id, EC number, or keyword a

get_reaction

Fetch a single Rhea reaction by its Rhea id (e.g. "RHEA:14293" or "14293"). Returns the balanced plain-text equation plus EC number, ChEBI compound, UniProt enzyme and PubMed cross-references. Rhea is


V&A Museum

live

Victoria and Albert Museum (V&A) Collections MCP.

Art 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-va-museum": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/va-museum/mcp"
      ]
    }
  }
}
search_objects

Search the Victoria & Albert Museum (V&A) — the world's leading art & design museum. Find objects across 1M+ items (furniture, fashion, ceramics, photographs, paintings, jewellery, sculpture) by keywo

get_object

Get the full record for a single V&A object by its system number (e.g. "O72610", as returned by search_objects). Returns title, maker, object type, materials, description, date, place, dimensions, and


POWO (Plants of the World Online, by the Royal Botanic Gardens, Kew) MCP.

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

Search POWO (Plants of the World Online, by Kew) — the authoritative global plant taxonomy database — for accepted plant names and synonyms by scientific or common name. Returns matching taxa with the

get_taxon

Fetch a full POWO (Plants of the World Online, by Kew) taxon record by its fqId (e.g. "urn:lsid:ipni.org:names:304293-2", obtained from search_plants). Returns the taxon's classification, family/genus


EBI Complex Portal — curated macromolecular protein complex database with subunit composition and biological function details.

BiologyScience 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-complex-portal": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/complex-portal/mcp"
      ]
    }
  }
}
search_complexes

Search the EBI Complex Portal — a manually curated database of stable macromolecular protein complexes — by protein/complex name, gene, GO term, or biological process (e.g. "apoptosis", "SCF", "riboso

get_complex

Get a single Complex Portal record by its accession (e.g. CPX-7762). Returns the complex's participants (subunits) with UniProt identifiers, biological roles and stoichiometry, plus systematic name, f


BioStudies

live

EBI BioStudies — search and retrieve metadata for biological study descriptions linking across EBI archives (ArrayExpress, PRIDE, etc.).

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

Search EBI BioStudies — a keyless database of biological study descriptions that links across EBI archives (ArrayExpress, PRIDE, etc.). Find studies by keyword and get accession, title, authors, type,

get_study

Get the metadata for a single EBI BioStudies study by accession (e.g. "S-EPMC6010251"). Returns the title, flattened attributes (abstract, release date, data source, etc.), and counts of links and sub


BioSamples

live

EBI BioSamples — search and fetch metadata for biological samples (cell lines, tissues, organisms) referenced across EBI archives.

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

Search EBI BioSamples — metadata for biological samples (cell lines, tissues, organisms) referenced across EBI archives. Free-text search by organism, tissue, or keyword; returns matching samples with

get_sample

Fetch a single EBI BioSamples record by accession. Returns the sample name, dates, taxId, organism, and a flattened map of its characteristics (organism, tissue, sex, cell type, etc.). Keyless.


Edamam

live

Edamam APIs — nutrition analysis, recipe search, and food database lookup with macros, diet labels, and ingredient details.

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

Analyze the nutrition of a food ingredient or recipe line and return calories, weight, diet/health labels, and a macro breakdown. Example: nutrition_analysis({ ingredient: "1 cup rice and 10 oz chickp

search_recipes

Search Edamam's recipe database by keyword with optional diet, health, and cuisine filters. Returns recipes with calories, time, servings, and ingredient lists. Example: search_recipes({ query: "chick

search_food

Search Edamam's food database for foods matching a query and return per-100g macros (calories, protein, fat, carbs). Example: search_food({ query: "cheddar cheese", limit: 10 })


PredictHQ

live

PredictHQ Events API — search real-world events (concerts, sports, conferences, weather) with attendance predictions for demand forecasting.

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

Search the PredictHQ Events API for real-world events (concerts, sports, conferences, festivals, public holidays, severe weather, etc.) used for demand forecasting. Filter by free-text query, category

nearby_events

Find PredictHQ events within a radius of a geographic point (latitude/longitude). Useful for "what is happening near this venue/store/airport" demand-forecasting queries. Filter by category and active

get_event

Fetch a single PredictHQ event by its id, returning its title, category, rank, predicted attendance, dates, and location. Example: get_event({ id: "abcDEF123" }).


Currents

live

Currents API — latest and keyword-searched global news from 70k+ sources with language, category, and country filters.

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

Get the most recent global news articles from Currents (70k+ sources). Filter by language and category. Example: latest_news({ language: "en", category: "technology", limit: 15 })

search_news

Search global news by keyword across Currents (70k+ sources). Filter by language, category, country, and date range. Example: search_news({ keywords: "artificial intelligence", language: "en", limit:

list_categories

List the news category labels supported by Currents (e.g. technology, business, world, sports). Example: list_categories({})


TheGamesDB

live

TheGamesDB community video-game database — search games and retrieve metadata, boxart, platforms, and genre lists.

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

Search the TheGamesDB video-game database by title. Returns matching games with platform name, release date, players, rating, and a short overview. Example: search_games({ name: "zelda", limit: 10 })

get_game

Get full metadata for a single game by its TheGamesDB id, including the front boxart image URL. Example: get_game({ id: 108139 })

list_platforms

List all gaming platforms known to TheGamesDB (id, name, alias). Useful for resolving platform ids. Example: list_platforms({})

list_genres

List all game genres known to TheGamesDB (id, name). Useful for resolving genre ids. Example: list_genres({})


NASA/JPL Solar System Dynamics + CNEOS MCP.

SpaceScience 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-jpl-ssd": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/jpl-ssd/mcp"
      ]
    }
  }
}
get_small_body

NASA/JPL Solar System Dynamics — look up an asteroid or comet by name or designation and return its orbit and physical parameters (eccentricity, semi-major axis, MOID, diameter, albedo, NEO/PHA flags)

close_approaches

NASA/JPL CNEOS — list near-Earth close approaches to Earth in a date range, with miss distance (AU), relative velocity (km/s), and absolute magnitude (size proxy). Keyless.

impact_risk

NASA/JPL CNEOS Sentry — Earth impact risk for asteroids. Pass a designation for one object's cumulative impact probability, Palermo/Torino scale, diameter, and impact window; or omit it to list all cu

recent_fireballs

NASA/JPL CNEOS — most recent atmospheric fireballs/bolides detected by U.S. Government sensors, with date, radiated and total impact energy (kilotons of TNT), location, altitude, and velocity. Keyless


Crystallography Open Database (COD) MCP.

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

Search the Crystallography Open Database (COD), an open repository of crystal structures (inorganic, organic, metal-organic, and mineral). Search by compound name (free text), chemical formula, or min

get_structure

Look up a single crystal structure in the Crystallography Open Database (COD) by its numeric COD ID (e.g. "1009000"). Returns the compound/mineral name, chemical formula, space group, full unit-cell p

get_cif

Fetch the full CIF (Crystallographic Information File) for a COD structure by its numeric COD ID — the actual machine-readable structure: symmetry operations and the atom sites (element, fractional x/


EMDB (EBI Electron Microscopy Data Bank) MCP — keyless.

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

Search the EBI Electron Microscopy Data Bank (EMDB) for 3D cryo-EM / electron-tomography density maps by free-text keyword (e.g. "ribosome", "spike protein", "apoptosis"). Returns matching maps with E

get_map

Get a single EMDB entry by its EMDB id (e.g. "EMD-1080"). Returns a trimmed record: title, sample, structure-determination method, resolution (Angstrom), and release date. EMDB holds 3D electron-micro


PDBe

live

PDBe (Protein Data Bank in Europe, EBI) MCP.

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

PDBe (Protein Data Bank in Europe, EBI): get a PDB entry summary — title, experimental method, release date, source organism, and entity counts (polypeptide/ligand/water/...). Keyless. The EBI counter

get_molecules

PDBe (EBI): list the molecules/entities in a PDB structure — proteins, nucleic acids, and ligands, each with entity_id, molecule_type, name, and chain length. Keyless. Pass a 4-char PDB id like "1cbs"

uniprot_mappings

PDBe (EBI): SIFTS cross-database mapping of a PDB structure to UniProt — for each UniProt accession, the matching chains and residue range. Curated cross-database mappings unique to EBI. Keyless. Pass


Sefaria

live

Sefaria MCP — the free digital library of Jewish texts.

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

Fetch a passage of Jewish text from Sefaria by reference, in Hebrew and/or English. Works for Torah/Tanakh, Talmud, Mishnah, Midrash, Halacha, Kabbalah, and commentaries. Keyless.

lookup_ref

Validate or autocomplete a Sefaria reference or title (e.g. "Genesis", "Rashi", "Berakhot"). Returns whether it is a valid reference/book and a list of completions. Keyless.

get_commentaries

List the commentaries and cross-references on a passage (e.g. Rashi, Targum, quoting commentaries) from Sefaria's link graph. Keyless.


Digimon

live

Digimon API MCP (digi-api.com).

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

Search the Digimon API by name (partial match) and list Digimon creatures. Omit name to list all. Returns id, name, and image for each match. Keyless.

get_digimon

Get full details for one Digimon by name or numeric id: its level, type, attribute, fields, evolution lines, and English description. Keyless.


ecosyste.ms — open package metadata, cross-registry lookups, and registry listings for npm, PyPI, crates.io, and 100+ package ecosystems.

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

Get a package's open metadata from ecosyste.ms — description, homepage, repository, license, latest version, monthly downloads, and dependent/usage counts. Works across 100+ registries. Keyless.

lookup_package

Look up every registry a package or repository is published to, via package URL (purl) or repository URL. Returns matching package records across all registries. Keyless.

list_registries

List the package registries ecosyste.ms supports (npm, PyPI, crates.io, Go, NuGet, Maven, RubyGems, Packagist, Docker Hub, and 100+ more) with their ecosystem and package counts. Keyless.


OSV.dev (Open Source Vulnerabilities) MCP.

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

Find all known vulnerabilities for an open-source package, optionally at a specific version, via the OSV.dev database. Omit version to get every vuln known for the package. Returns a compact summary a

get_vulnerability

Get full detail for a single vulnerability by its OSV ID — e.g. "GHSA-jf85-cpcp-j695", "CVE-2021-23337", "PYSEC-2021-XXX". Returns summary, details, aliases, severity, affected packages/ranges, and re

query_by_commit

Find vulnerabilities affecting a specific source-repository git commit via OSV.dev. Useful when you have a pinned commit hash rather than a released version. Returns the same compact vuln summary arra

query_batch

Batch vulnerability query against OSV.dev (up to 1000 entries per call) — for SBOM-style "scan every dependency in this lockfile" workflows. Pass an array of {package:{name,ecosystem}, version?} or {c


Semantic Scholar Academic Graph MCP.

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

Search 200M+ academic papers on Semantic Scholar by keyword. Returns titles, authors, year, venue, citation counts, DOI, and open-access PDF links. Optionally filter by year range and field of study.

get_paper

Get full metadata for a single paper by ID. Accepts a Semantic Scholar paper ID, or a prefixed ID like "DOI:10.1145/3292500", "arXiv:2106.15928", or "CorpusId:215416146". Returns abstract, TLDR summar

get_paper_citations

List papers that CITE a given paper (the works citing it), with their titles, authors, year, and citation counts. Useful for forward citation tracing and finding follow-up work. Keyless.

get_author

Search for academic authors by name on Semantic Scholar. Returns up to 5 matches with affiliations, paper count, total citation count, h-index, and profile URL. Keyless.


The Met

live

The Metropolitan Museum of Art Collection MCP.

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

Search The Met's open-access collection by keyword. Optionally filter to objects with images, currently on view, by medium, or by a year range. Returns compact records (title, artist, date, medium, im

get_artwork

Get the rich detail for a single Met collection object by its objectID — artist bio, medium, dimensions, department, classification, culture, period, credit line, image URLs, tags, and gallery number.

list_departments

List The Met's curatorial departments (e.g. European Paintings, Egyptian Art, Arms and Armor) with their department IDs, usable to scope searches. Keyless.


USGS Earthquake Catalog MCP (FDSNWS event API).

ScienceEnvironment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-usgs-earthquakes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/usgs-earthquakes/mcp"
      ]
    }
  }
}
search_earthquakes

Search the USGS earthquake catalog (FDSNWS event API) for real-time and historical seismic events. Filter by time window, magnitude, depth, and a circular geographic area. Returns a compact list of qu

get_earthquake

Get full detail for a single earthquake by its USGS event id (e.g. "us7000n7n8"). Returns magnitude, location, time, depth, felt reports, tsunami flag, PAGER alert level, status, contributing networks

count_earthquakes

Count earthquakes matching a filter without returning the events — fast for questions like "how many M5+ quakes in the last month near X". Same filters as search_earthquakes (time, magnitude, circular


US EPA Envirofacts — search and look up EPA-regulated facilities (RCRA, NPDES, AIRS) by ZIP, state, or registry ID.

GovernmentEnvironment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-epa-envirofacts": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/epa-envirofacts/mcp"
      ]
    }
  }
}
facilities_by_zip

List EPA-regulated facilities in a US ZIP code from the EPA Facility Registry Service (FRS). Returns each facility once with all the EPA programs (RCRAINFO, NPDES, AIRS, TRI, etc.) it's regulated unde

facilities_by_state

List EPA-regulated facilities in a US state (and optionally a city) from the EPA Facility Registry Service (FRS). Returns each facility once with all the EPA programs it is regulated under. Keyless.

get_facility

Look up one EPA-regulated facility by its FRS Registry ID. Returns the facility detail plus a programs[] array listing every EPA program (RCRAINFO, NPDES, AIRS, TRI, etc.) the site is regulated under.


PoetryDB

live

PoetryDB — search and browse public-domain poems by author, title, or line text; fetch random poems. Keyless.

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

Search public-domain poems on PoetryDB by author and/or title (partial matches allowed). At least one of author or title is required. Returns full poem text (capped). Keyless.

get_poem_lines

Full-text search within poem lines on PoetryDB — finds any poem containing the given phrase in one of its lines. Returns full poem text (capped). Keyless.

random_poems

Fetch one or more random public-domain poems from PoetryDB. Returns full poem text (capped). Keyless.

list_authors

List all authors available in PoetryDB. Keyless.


USGS NWIS — real-time streamflow and gauge readings, daily hydrologic time series, and site discovery for US water monitoring stations.

EnvironmentScience 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-usgs-water": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/usgs-water/mcp"
      ]
    }
  }
}
current_conditions

Latest instantaneous (real-time) readings for one or more USGS gauge sites. Returns the most recent value per site × parameter — e.g. current streamflow and gage height for a river.

daily_values

Daily-values time series for a single USGS site + parameter over a date range. Returns one statistic per day (default mean). Useful for trends, hydrographs, and historical comparison.

find_sites

Discover active USGS gauge sites in a US state that are currently reporting a given parameter (real-time). Returns sites with their latest reading; useful for finding which gauges are live in a region


FBI Wanted

live

FBI Wanted — search fugitives, Most Wanted, cyber suspects, and missing persons from the official FBI Wanted API.

GovernmentLegal 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-fbi-wanted": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/fbi-wanted/mcp"
      ]
    }
  }
}
search_wanted

Search the FBI's Wanted persons database — fugitives, Most Wanted, cyber's-most-wanted, terrorists, white-collar suspects, kidnappings/missing persons, and law-enforcement-assistance cases. Returns co

get_wanted

Get the full FBI Wanted profile for one person by uid — physical description, aliases, occupations, caution/remarks/details (plain text), reward, field offices, and images. Keyless, official FBI data.

most_wanted

The FBI's Ten Most Wanted Fugitives. Returns the current top-ten list with reward, warning, and image for each. Keyless, official FBI data.


OpenHolidays — public and school holidays for ~30 European countries with regional subdivision support.

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

Public (statutory) holidays for a European country in a date range, with regional subdivisions. EUROPE-focused (~30 countries: DE, FR, NL, CH, IT, AT, BE, ES, PL, etc.). Returns each holiday with its

school_holidays

School holidays (term breaks: Christmas, Easter, summer, etc.) for a European country in a date range, optionally scoped to one subdivision. This is the unique value-add over worldwide public-holiday

list_countries

List the ~30 European countries OpenHolidays covers, with their ISO codes and official languages. EUROPE-focused. Keyless.

list_subdivisions

List the regional subdivisions (federal states, regions, cantons, etc.) of a European country, with their codes and category. Use the returned codes to scope school_holidays. EUROPE-focused. Keyless.


Spaceflight News API — search and browse aggregated spaceflight news articles and mission reports from NASA, SpaceX, ESA, and dozens of sources.

SpaceNews 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-spaceflight-news": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/spaceflight-news/mcp"
      ]
    }
  }
}
search_articles

Full-text search spaceflight news articles aggregated from dozens of sources (Spaceflight Now, NASASpaceflight, NASA, SpaceX, Blue Origin, ESA, and more). Filter by source, publish date, and featured

get_article

Get a single spaceflight news article by its numeric id, with the full untruncated summary plus any associated launches and events. Keyless.

latest_reports

Latest long-form spaceflight mission reports (longer than standard news articles), newest first. Keyless.

list_sources

List every news source the Spaceflight News API aggregates, plus the API version. Use the names to filter search_articles by news_site. Keyless.


Warframe

live

WarframeStat API — live Warframe game world state: Void Fissures, Invasions, day/night cycles, and item search.

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

One-call summary of Warframe's live worldstate: the Plains of Eidolon (Cetus) day/night cycle, Cambion Drift (fass/vome), Orb Vallis (warm/cold), the current daily Sortie, Baro Ki'Teer's void-trader s

get_fissures

List the active Void Fissures (Lith / Meso / Neo / Axi relic missions, including Steel Path and Void Storm variants) with node, mission type, enemy and time remaining. Keyless, live.

get_invasions

List the active (non-completed) faction Invasions — node, description, attacking/defending factions and completion percentage. Keyless, live.

search_items

Fuzzy-search Warframe item data — warframes, weapons, mods, and more — by name. Returns name, type, category and description. Keyless.


Minneapolis Institute of Art (Mia) collection MCP.

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

Search the Minneapolis Institute of Art collection (~90k objects). Accepts free text ("monet water lilies") or Elasticsearch field syntax: artist:"Van Gogh", country:"China", department:"Asian Art", r

get_artwork

Get full details for one Minneapolis Institute of Art object by its numeric collection id — title, artist, date, medium, dimensions, credit line, department, gallery location, curatorial text, and ima

department_highlights

Browse artworks from a Minneapolis Institute of Art curatorial department, with imaged objects ranked first. Departments include "European Art", "Asian Art", "Decorative Arts, Textiles and Sculpture",


Environment Canada (ECCC) — real-time weather observations, active alerts, and historical daily climate records for Canadian stations.

WeatherEnvironment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-weather-gc-ca": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/weather-gc-ca/mcp"
      ]
    }
  }
}
current_observations

Latest real-time surface weather observations from Environment Canada stations near a point (swob-realtime). Returns station name, observation time, air temp, dewpoint, humidity, wind, pressure, snow

active_alerts

Active Environment Canada weather alerts (warnings, watches, statements) across Canada, optionally filtered near a point. Returns alert name, type, risk colour, affected area, province, effective/expi

climate_daily

Daily climate records (max/min/mean temperature °C, total precipitation mm, snow on ground cm) for an Environment Canada station over a date range. Use a 7-digit climate identifier, e.g. "6158355" (TO


GeoNet New Zealand — recent earthquakes, quake detail, and current volcanic alert levels from GNS Science's official NZ monitoring network.

ScienceEnvironment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-geonet-nz": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/geonet-nz/mcp"
      ]
    }
  }
}
recent_quakes

Recent New Zealand earthquakes from GeoNet (official NZ monitoring, GNS Science), filtered by minimum Modified Mercalli Intensity. MMI 3 ≈ widely felt, 5 ≈ damaging; -1 returns all located quakes. Ret

get_quake

Get detail for a single New Zealand earthquake by its GeoNet publicID — time, magnitude, depth, locality, felt intensity (MMI), location quality, and coordinates. Keyless.

volcano_alerts

Current Volcanic Alert Levels for all monitored New Zealand volcanoes (Taupo, White Island/Whakaari, Ruapehu, Tongariro, Auckland Volcanic Field, etc.) from GeoNet — official data USGS doesn't cover.


NASA Common Metadata Repository (CMR) — search Earth-science dataset collections and granules (satellite/mission data) with spatial and temporal filters.

SpaceScience 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nasa-cmr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nasa-cmr/mcp"
      ]
    }
  }
}
search_collections

Search NASA's Common Metadata Repository for Earth-science dataset collections by keyword, platform (satellite/mission), instrument, time range, or bounding box. ~10k collections covering MODIS, Lands

get_collection

Get full metadata for one NASA Earth-science collection by its CMR concept ID — summary, DOI/landing page, spatial coverage, temporal range, and access links. Keyless.

search_granules

List the individual data files (granules) of a NASA collection — newest first, with timestamps, file size, and direct download URLs. Filter by time range or bounding box. Keyless.


ISRIC SoilGrids — global 250m-resolution soil properties (clay, pH, organic carbon, nitrogen) and WRB classification at any coordinate.

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

Get soil property values at any coordinate from ISRIC SoilGrids (250m global grid) — clay/sand/silt %, pH, organic carbon, nitrogen, cation exchange, bulk density, water content. Values are returned i

soil_classification

Get the World Reference Base (WRB) soil classification at a coordinate from ISRIC SoilGrids — the most probable soil class (e.g. Cambisols, Podzols) plus the top 5 classes with probabilities. Keyless;

list_soil_properties

List the soil properties available from ISRIC SoilGrids with their names and available depth intervals. Use this to discover valid property codes for soil_properties. Keyless; may take several seconds


iDigBio — search and retrieve ~150M digitized natural-history museum specimen records (plants, animals, fossils) from US collections.

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

Search ~150M digitized natural-history museum specimen records (plants, animals, fossils) from US collections via iDigBio. Filter by any combination of taxonomy and locality. At least one filter is re

get_specimen

Get the full normalized record for a single iDigBio specimen by its uuid. e.g. uuid "0746b188-c390-4ab1-bd20-5489a9c6c33c" (a Puma concolor record). Keyless.

count_by_field

Get taxonomic/geographic specimen counts grouped by a field (top values + counts) across iDigBio. Optionally scope the counts with taxonomy/locality filters. Keyless.


Open Tree of Life — resolve species names to taxon IDs, retrieve taxonomic lineages, and find common ancestors across the synthetic tree of all life.

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

Resolve scientific (Latin binomial) names to Open Tree of Life taxon IDs (ott_id). The ott_id is the key needed by taxon_info and common_ancestor — start here. Returns the best match per name with its

taxon_info

Get full details for an Open Tree of Life taxon by ott_id (from match_names) — accepted name, rank, unique name, synonyms, source taxonomy, and the complete ancestry lineage from this taxon up to the

common_ancestor

Find the most recent common ancestor (MRCA) of 2-10 taxa in the synthetic Tree of Life, by ott_id (from match_names). Returns the common-ancestor taxon (ott_id, name, rank). Keyless.


USGS ScienceBase catalog MCP.

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

Search the USGS ScienceBase catalog (sciencebase.gov) — the U.S. Geological Survey's scientific data catalog of datasets, publications, and projects, with summaries, categories, dates, and direct down

get_item

Get a single ScienceBase catalog item by id — full summary, categories, types, dates, contacts, web links, and attached files (download URLs). e.g. id "58f8be37e4b0b7ea5452260e". Keyless.

item_children

List the child items of a ScienceBase catalog item. The catalog is hierarchical — collections and folders contain sub-items (use get_item to check has_children). Keyless.


HathiTrust Digital Library — look up digitized-book holdings by ISBN/OCLC/LCCN, retrieve bibliographic records, and check full-view availability.

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

Look up HathiTrust's digitized-book holdings by a standard identifier (OCLC, LCCN, ISSN, ISBN, HathiTrust item id, or catalog record number). Returns the bibliographic record(s) plus every scanned cop

get_record

Get a single HathiTrust catalog record by its record number, with the full structured bibliographic metadata (titles, ISBNs, ISSNs, OCLCs, LCCNs, publish dates, record URL) and the complete list of sc

check_full_view

Convenience check: given an identifier, report whether a readable (full-view) scanned copy exists on HathiTrust, how many copies are readable, and direct reading URLs. Keyless.


Open Quantum Materials Database (OQMD) — search DFT-computed inorganic materials by composition, retrieve formation energy, stability, and band gap data.

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

Search the Open Quantum Materials Database for DFT-computed inorganic materials by composition and/or constituent elements, with optional band-gap and thermodynamic-stability filters. Returns formatio

get_material

Fetch a single OQMD material by its entry_id (e.g. 16525 = the Pbcn polymorph of Fe2O3). Returns formation energy (eV/atom), stability above hull, band gap, space group, prototype, cell volume, atom/e

stable_phases

List the ground-state (on-hull) phases of a chemical system — the thermodynamically stable compounds in OQMD for a given set of elements. e.g. "Fe-O" returns FeO, Fe2O3, Fe3O4. Restricts to materials


HGNC (HUGO Gene Nomenclature Committee) — look up, search, and cross-reference official human gene symbols, names, and external database IDs.

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

Exact lookup of an approved human gene by its official HGNC symbol — returns the full authoritative record: approved name, locus type, chromosomal location, alias/previous symbols, gene groups, and cr

search_genes

Fuzzy search across approved symbols, names, and aliases — e.g. "breast cancer", "p53", "tumor protein". Returns lightweight matches (hgnc_id, symbol, relevance score) ranked by score; call get_gene w

resolve_xref

Reverse-lookup: map an external database id to its canonical HGNC gene. "What gene is Entrez 672?" -> BRCA1. Accepts entrez_id, ensembl_gene_id, uniprot_ids, omim_id, refseq_accession, or ucsc_id and


NLM MeSH (Medical Subject Headings) MCP.

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

Search NLM MeSH descriptors by a disease/drug/concept term (e.g. "diabetes", "aspirin", "myocardial infarction"). Returns the matching MeSH descriptor IDs (Dxxxxxxx) — the controlled-vocabulary headin

get_descriptor

Get full detail for a MeSH descriptor by its ID (e.g. "D003920" = Diabetes Mellitus): its preferred label, entry terms (synonyms MeSH indexes under it), allowable qualifiers (subheadings like "drug th

resolve_term

Map a free-text term or everyday synonym to its canonical MeSH descriptor(s) — the preferred heading to use when searching PubMed. Tries an exact descriptor match first; if none, falls back to a fuzzy


Manifold Markets — search, retrieve, and browse play-money prediction markets with implied probabilities, volume, and liquidity.

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

Search Manifold Markets prediction markets by topic or question text. Returns markets with current probability (for binary), trading volume, liquidity, bettor count, and resolution status. Manifold is

get_market

Get full detail for a single Manifold market by its URL slug or id. Provide exactly one of slug/id. For multiple-choice markets, returns each answer with its probability (top 12). Includes plain-text

top_markets

Most-active open Manifold markets right now — a live attention/demand signal for what the prediction-market crowd is trading. Optionally narrow to a topic. Returns compact market records sorted by pop


PredictIt

live

PredictIt — browse and search real-money US politics prediction markets (~250 markets: elections, Congress, nominations) with contract implied probabilities.

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

List active PredictIt prediction markets (real-money, US-politics-focused: elections, control of Congress, nominations, primaries; ~250 markets total). Contract prices are implied probabilities (0–100

get_market

Get one PredictIt market by id with ALL of its contracts. Contract prices are implied probabilities (0–100%). Keyless. Example id: 7589 (2026 Republican House seats). Use list_markets or search_market

search_markets

Search PredictIt markets by name (client-side over all ~250 markets; PredictIt has no search endpoint). US-politics-focused. Contract prices are implied probabilities (0–100%). Keyless.


WhiskyHunter — whisky distillery auction price history and per-auction-house trading volume stats from whiskyhunter.net.

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

List whisky distilleries tracked by whiskyhunter.net (300+ distilleries with auction data). Returns each distillery name, slug, and country. Use the slug with distillery_prices to get its auction pric

distillery_prices

A single distillery's monthly online whisky-auction price/volume history: per-month max/min/mean winning bid, total trading volume, and lots count. Prices are in the auctions' reporting currency and a

auction_stats

Latest aggregate monthly stats per online whisky-auction house: mean winning bid, total trading volume, lots count for that house, and the all-auctions total lots count for the month. Aggregates onlin


MFAPI.in MCP — Indian mutual-fund NAV (net asset value) data.

FinanceAsia 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-mfapi-india": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/mfapi-india/mcp"
      ]
    }
  }
}
search_schemes

Find Indian mutual-fund scheme codes by fund name. Fetches the full MFAPI scheme list (~16,000 schemes) and filters client-side by a case-insensitive substring match on the scheme name. This is the wa

get_nav_history

Get a mutual-fund scheme's NAV (net asset value) history from MFAPI — fund house, category, ISIN, latest NAV, and the most-recent NAV points (newest first). Use search_schemes to find a scheme_code fi

latest_nav

Fast single-value lookup of a mutual-fund scheme's latest NAV (net asset value) from MFAPI. Returns the most recent NAV, its date, and basic scheme metadata. Use search_schemes to find a scheme_code f


Futuur

live

Futuur — search and browse prediction markets (politics, crypto, sports, science) with implied probabilities in both play-money and real-money USDC.

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

Search Futuur prediction markets (politics, crypto, sports, science) by text. Returns open markets by default with per-outcome implied probabilities in both play-money (OOM) and real-money (USDC) mode

get_market

Get one Futuur market by id with its full outcome list and per-outcome implied probabilities (play-money OOM + real-money USDC, as percentages), volumes, tags, description, and resolution status. Exam

top_markets

Most-active open Futuur markets (attention signal), ranked by trading volume. Returns each market with per-outcome implied probabilities (OOM play-money + USDC real-money). Keyless.


CFTC Commitment of Traders (COT) MCP.

MarketsFinance 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-cftc-cot": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/cftc-cot/mcp"
      ]
    }
  }
}
search_markets

Find CFTC Commitment of Traders (COT) futures markets by name. Use this first to get the exact market_and_exchange_names and contract_code that latest_report and report_history require. Keyless. e.g.

latest_report

Most recent weekly COT positioning for one futures market. Pass the exact market_and_exchange_names from search_markets, e.g. "CRUDE OIL, LIGHT SWEET-WTI - NEW YORK MERCANTILE EXCHANGE" or "GOLD - COM

report_history

Weekly net-position time series for one futures market (non-commercial net, commercial net, open interest), most recent first. Pass the exact market_and_exchange_names from search_markets. Useful for


Crypto Fear & Greed Index — current and historical 0–100 market sentiment gauge for crypto, with classification labels.

CryptoMarkets 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-crypto-fng": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/crypto-fng/mcp"
      ]
    }
  }
}
current_index

Get today's Crypto Fear & Greed Index — a 0–100 market-sentiment gauge for crypto (0 = Extreme Fear, 100 = Extreme Greed). Returns the current value, its classification, the date, and seconds until th

index_history

Get historical Crypto Fear & Greed Index values (most recent first), plus a summary (latest, average, min, max). Each entry has a date, the 0–100 value, and its classification. Keyless.


World Bank Projects & Operations MCP.

EconomicsGovernment 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-worldbank-projects": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/worldbank-projects/mcp"
      ]
    }
  }
}
search_projects

Search World Bank development projects by free text and/or country and status. Returns financing, sectors, lending instrument, approval/closing dates, and status for each match. Keyless. Provide query

get_project

Get the fuller record for a single World Bank project by its project id (e.g. "P006553", "P501648"): financing breakdown, implementing agency, borrower, sectors, themes, and the project development ob

projects_by_country

List a country's World Bank projects (newest board-approval first) filtered by status. Returns the compact project shape with financing, sectors, and dates. Keyless.


UK Contracts Finder — search and retrieve UK government procurement notices (open tenders and awarded contracts) published via Cabinet Office OCDS.

GovernmentEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-uk-contracts": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/uk-contracts/mcp"
      ]
    }
  }
}
search_notices

Search UK government procurement notices (open tenders + awarded contracts) from Contracts Finder, published as OCDS by the Cabinet Office. Filter by stage and an optional published-date range; result

get_notice

Get the full OCDS detail for a single UK Contracts Finder notice by its release `id` (the `id` field returned by search_notices / recent_notices, format "{guid}-{seq}"). Returns title, full descriptio

recent_notices

List the most recent UK procurement notices from Contracts Finder, newest-first, optionally filtered by stage (tender/award). Same compact shape as search_notices. Keyless.


US Senate LDA — search federal lobbying disclosure filings showing registrants, clients, issue areas, and income/expense amounts.

GovernmentLegal 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-senate-lobbying": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/senate-lobbying/mcp"
      ]
    }
  }
}
search_filings

Search US Senate Lobbying Disclosure Act (LDA) filings — federal lobbying disclosures showing who is lobbying the US government, for which client, on what issues, and for how much. Lobbying FIRMS/regi

get_filing

Get the full detail of a single LDA lobbying filing by its filing UUID — registrant, client, income/expenses, every lobbying activity (issue + description + named lobbyists), foreign entities, and aff

list_issue_codes

List the valid general issue area codes used by LDA filings (the values accepted by the `issue` filter on search_filings), e.g. TAX=Taxation, HCR=Health Issues, ENV=Environment. Keyless.


FARA (Foreign Agents Registration Act) — search US-registered foreign agents, list their foreign principals, and retrieve DOJ disclosure filings.

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

Search FARA registrants — US agents registered to represent FOREIGN principals (foreign governments, parties, businesses) for lobbying/influence inside the US. FARA has no server-side search, so this

list_foreign_principals

List the FOREIGN principals (foreign governments, parties, companies, individuals) that a given FARA registrant represents — i.e. who a US agent is working for. Addressed server-side by registration_n

get_registrant_documents

List FARA filings (PDF documents) for a registrant by registration_number (from search_registrants) — registration statements, supplemental statements, informational materials, exhibits, etc. Each row


OpenRouter LLM catalog — list, look up, and compare ~340 AI models with normalized per-token pricing, context windows, and modality.

AI/MLTechnology 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-openrouter": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/openrouter/mcp"
      ]
    }
  }
}
list_models

List LLMs from the OpenRouter catalog (~340 models across all major providers) with normalized $/1M-token pricing, context windows, and modality. Filter by search, free-only, minimum context, or modal

get_model

Get full details for one OpenRouter model by id — normalized $/1M pricing (prompt, completion, plus per-request/image/web-search costs), context window, modality, supported parameters, tokenizer, know

compare_models

Side-by-side comparison of pricing ($/1M tokens), context window, and modality for 2-5 OpenRouter models. Answers "is claude-sonnet-4.5 cheaper than gpt-4o". Keyless.


Civitai — search and browse community AI image-generation models (Stable Diffusion checkpoints, LoRAs, ControlNets) by type, text, and base model.

AI/MLArt 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-civitai": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/civitai/mcp"
      ]
    }
  }
}
search_models

Search Civitai's catalog of community AI image-generation models (Stable Diffusion checkpoints, LoRAs, textual-inversion embeddings, ControlNets) by text query and/or type. Returns download stats, bas

get_model

Get full details for a single Civitai model by id — description, type, creator, tags, download/rating stats, and every version with its base model, trigger words and downloadable files. Try id 4201 ("

list_by_type

Browse the top community models of a given type on Civitai (most-downloaded first), optionally filtered to a specific base model. Great for "best SDXL checkpoints" or "top Flux LoRAs". Defaults to Saf


endoflife.date — software EOL and support timelines for ~460 products (languages, OSes, databases, frameworks) with cycle-level patch and LTS details.

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

List the ~460 software products endoflife.date tracks (languages, frameworks, OSes, databases, devices) as slugs. These slugs feed get_product and get_cycle. Keyless. Use the `search` filter to find o

get_product

Get a product's full release/support timeline — every cycle with release date, EOL date, active-support end, latest patch, and LTS status. Use for "is Node 18 still supported?" / "what's the latest Ub

get_cycle

Get a single release cycle's support details for a product — release date, EOL, active-support end, latest patch, LTS, and any extended-support window. Use for a precise version question like "when do


SANS Internet Storm Center — IP reputation lookups, port attack-activity history, and the global InfoCon threat level from SANS ISC DShield.

SecurityTechnology 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-isc-sans": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/isc-sans/mcp"
      ]
    }
  }
}
ip_reputation

Look up an IPv4 address in the SANS ISC DShield database — its attack-report history, ASN/owner, abuse contact, and risk. A high report_count means the IP is an active attack source (firewall logs sub

port_activity

Get recent attack/probe activity for a TCP/UDP port from SANS ISC — daily counts of report records, distinct target IPs, and distinct source IPs hitting the port. Useful for spotting scanning surges a

threat_level

Get the global SANS ISC InfoCon threat level — the internet-wide "weather report" for malicious activity. Returns one of green/yellow/orange/red with a plain-English meaning. An at-a-glance signal of


Oyez: search and retrieve US Supreme Court (SCOTUS) case summaries, decisions, and full opinions by term or docket number.

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

Search US Supreme Court (SCOTUS) cases from Oyez by term year and/or case-name substring. Returns compact summaries with the question presented, description, and IDs for get_case. If neither term nor

get_case

Get a full SCOTUS case from Oyez by term and docket number — question presented, facts, conclusion, decision (winning party, vote split, decision type), which justices were in the majority vs. dissent

cases_by_term

List the SCOTUS cases for a given term year from Oyez — compact summaries (name, docket, citation, short question, oyez_url). Use to browse a full term. Keyless.


eCFR: full-text search and browse all 50 titles of the US Code of Federal Regulations via the official eCFR API.

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

Full-text search across all 50 titles of the US Code of Federal Regulations (federal agency regulations) via the official eCFR API. Returns matching sections with citation, heading, and excerpt. e.g.

list_titles

List all 50 titles of the US Code of Federal Regulations (Title 1 General Provisions … Title 50 Wildlife and Fisheries), with currency dates. This is the index for the `title` filter in search_regulat

title_structure

Get the top-level structure (chapters/subtitles) of one CFR title — the agencies and major divisions within that title. Returns a summarized one-level view, not the full deep tree. Keyless.

get_section_text

Get the actual REGULATION TEXT of a specific CFR section — the full rule, not just a search excerpt. PREFER for "what does 14 CFR 91.113 say", "read the text of <citation>", "the exact wording of <reg


market-spread MCP — cross-venue prediction-market landscape scanner.

MarketsFinance 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-market-spread": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/market-spread/mcp"
      ]
    }
  }
}
compare_topic

Cross-venue prediction-market LANDSCAPE scanner: for one topic, show how 5 venues (Polymarket, Kalshi, Manifold, PredictIt, Futuur) are pricing it side by side and flag divergence. Each venue is queri

venue_quotes

Single-venue drill-down: fetch one venue's current top 5 matches for a query, each as { title, implied_probability (0-1 or null), url }. Useful after compare_topic to look closer at one venue. Implied


IPQuery: geolocation, ISP/ASN, and fraud/security risk scoring for any IPv4 or IPv6 address.

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

Full IP intelligence for an IPv4 or IPv6 address — geolocation (country, city, state, postal code, lat/long, timezone, local time), ISP/ASN/org, and security risk flags (VPN, proxy, Tor, datacenter, m

check_risk

Fraud/security view of an IP: is it a VPN, proxy, Tor exit, datacenter/hosting, or mobile network, plus a 0-100 risk score and a one-line assessment. Answers "is this IP an anonymizer / bot / datacent


7Timer!: astronomy observing forecasts (cloud cover, seeing, transparency) and general weather forecasts for stargazers and astrophotographers.

WeatherScienceSpace 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-7timer": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/7timer/mcp"
      ]
    }
  }
}
stargazing_forecast

Astronomy observing forecast from 7Timer! ASTRO — the metrics stargazers and astrophotographers use to decide if tonight is good for observing: cloud cover, atmospheric seeing (steadiness), and sky tr

weather_forecast

General weather forecast from 7Timer! CIVIL — temperature, humidity, a weather condition code (e.g. clearday, pcloudynight, lightrainday, tsday), cloud cover, wind, and precipitation type, at 3-hour r


macro-snapshot MCP — the state of the economy in one call.

EconomicsFinance 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-macro-snapshot": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/macro-snapshot/mcp"
      ]
    }
  }
}
macro_snapshot

Get the current state of the US/global economy in ONE call — Fed funds rate, the full Treasury yield curve (3mo/2y/10y + 10y-2y and 10y-3m spreads with inversion flag), CPI & core CPI year-over-year,

indicator

Read recent history for a single FRED (Federal Reserve economic data) series — drill into anything in the macro_snapshot or any other FRED series id. Common ids: UNRATE (unemployment), DFF (Fed funds)


EUR-Lex

live

Official EU law, article-level: search legislation and quote GDPR, NIS2, DORA, the EU AI Act and the rest of the EU digital/compliance corpus with verifiable EUR-Lex citations.

LegalGovernmentEurope 6 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-eur-lex": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/eur-lex/mcp"
      ]
    }
  }
}
compliance_index

Resolve a common EU regulation name to its CELEX id. Returns the curated map of the EU digital/compliance corpus (GDPR, NIS2, DORA, AI Act, DSA, DMA, eIDAS, Cyber Resilience Act, Data Act, …) with CEL

search_legislation

Full-text search of EU legislation titles via the EUR-Lex SPARQL endpoint. Returns CELEX id, English title and document date. Use when the act is not in compliance_index, or to find related/amending a

get_metadata

Metadata notice for one act by CELEX id: title, document date, legal type, in-force status hint and the EUR-Lex citation URL. Cheap; does not download the full text.

list_articles

Table of contents for an act: every Article number and its heading. Use to discover which Article to quote before calling get_article.

get_article

Full text of one or more Articles of an act, with a verifiable EUR-Lex citation URL for each. THE article-level grounding tool: quote GDPR Art. 17, AI Act Art. 6, etc. Accepts a single number ("17"),

get_document

Plain-text of a whole act (recitals + enacting terms), paged. Use for short acts or to read recitals/definitions; for a specific Article prefer get_article. Returns up to max_chars from offset.


Search and look up the full ISO catalogue (~80k deliverables): reference, title, abstract, publication status, edition, ICS, committee and supersession chain, with the correct iso.org link and a best-effort price. Backed by ISO Open Data; normative clause text stays paywalled.

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

Search the full ISO catalogue (~all deliverables) by keyword across reference, title and abstract, with optional filters. Returns reference, title, status, abstract snippet, committee and the iso.org

get_standard

Full record for one ISO standard by number ("27001") or reference ("ISO/IEC 27001:2022"): title, abstract, status, edition, publication date, ICS, committee, the supersession chain, the correct iso.or

compliance_catalog

Curated catalogue of the compliance-relevant ISO standards (ISMS/27000, privacy, AI/42000, quality, continuity, risk) → ISO number, family and summary. Static name→number resolver; pass a number to ge

open_data_files

URLs for the ISO Open Data bulk files (deliverables metadata, ICS classification, technical committees), ODC-By 1.0. The deliverables file is what backs this pack. Use to ingest the full dataset yours


OWASP

live

OWASP security standards: the Top 10 families (Web, API, LLM/GenAI, Mobile), the ASVS 5.0 verification requirements with citable ids and levels, and the Cheat Sheet Series as live guidance.

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

An OWASP Top 10 list with each category id, name, summary and the canonical URL. Lists: "web" (2021), "api" (2023), "llm" (LLM/GenAI applications 2025), "mobile" (2024). Use for awareness, mapping a f

asvs_chapters

Table of contents for the OWASP ASVS 5.0 (Application Security Verification Standard): the 17 chapters (V1–V17) with names and requirement counts per assurance level. Use to discover which chapter to

asvs_requirements

Testable security requirements from OWASP ASVS 5.0, each with its verification id (e.g. "V6.2.1"), section, level (L1/L2/L3) and text — the citable controls layer. Filter by chapter, level and/or keyw

cheat_sheet

OWASP Cheat Sheet Series — concise, practical defensive guidance. With a topic, returns the matching cheat sheet as Markdown (or candidate matches if ambiguous). Without a topic, lists all available c


N8n

live

n8n MCP — query your own n8n instance (BYO).

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

List workflows in YOUR n8n instance, with an active/inactive breakdown. Answers "how many active workflows do we have", "list our n8n workflows", "which workflows are turned on". Each workflow: id, na

n8n_get_workflow

Get one workflow's detail by id from your n8n instance — name, active state, node list (which integrations it uses), tags, timestamps. Get the id from n8n_list_workflows. Requires your instance_url +

n8n_list_executions

List recent workflow executions (runs) in your n8n instance — for "did our workflows run", "show recent failures", "execution history". Each: id, workflowId, status (success/error/waiting), mode, star


Hts

live

HTS MCP — US import tariff rates via the USITC Harmonized Tariff Schedule.

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

Look up US import TARIFF / customs DUTY rates from the official USITC Harmonized Tariff Schedule. PREFER OVER WEB SEARCH for "what is the tariff/import duty on X", "HS/HTS code for X", "customs rate f

hts_lookup

Get the full tariff detail for ONE HTS code, AND resolve its Section 301 (China) / Section 232 (steel & aluminum) Chapter-99 add-on duties into an effective-total view. Use after hts_search when you h


Cpsc

live

CPSC MCP — US consumer-product safety recalls (CPSC, free, no auth).

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

Search US consumer-product safety recalls (CPSC). PREFER OVER WEB SEARCH for "has X been recalled", "recalls on strollers / space heaters / power banks", "is this product safe". Covers toys, baby/chil

recent_recalls

Most recent US consumer-product recalls (CPSC), newest first — the "what got recalled lately" feed across all product categories. Use for "latest product recalls", "recent safety recalls this month".


Faa Delays

live

FAA Delays MCP — live US airport operational status (FAA, free, no auth).

Utility 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-faa-delays": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/faa-delays/mcp"
      ]
    }
  }
}
airport_delays

Live FAA operational delay status for ONE US airport. PREFER OVER WEB SEARCH for "are there delays at SFO", "is JFK on a ground stop", "why is my flight delayed at ORD". Returns any active ground stop

all_delays

Nationwide snapshot of ALL active FAA delay programs right now — every airport currently under a ground stop, ground delay, arrival/departure delay, or closure, each with its reason. Use for "which ai


Rba

live

RBA MCP — Reserve Bank of Australia statistics (free, no auth).

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

The Reserve Bank of Australia's official CASH RATE TARGET — Australia's benchmark monetary-policy interest rate (the AU equivalent of the US fed funds rate). PREFER OVER WEB SEARCH for "what is the RB

rba_exchange_rates

Latest official RBA exchange rates for the Australian dollar (AUD) against major currencies — USD, EUR, GBP, JPY, CNY, NZD, INR, and more (A$1 = X). PREFER OVER WEB SEARCH for "AUD to USD rate", "Aust

rba_series

Fetch any RBA statistical series by table id + series id — escape hatch for the full RBA statistical-tables catalog (CPI is g1, monetary aggregates d3, etc.). Returns recent observations. Use rba_cash


Banxico

live

Banxico MCP — Banco de México (Mexico's central bank) via the SIE API.

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

The official USD/MXN exchange rate (Banco de México FIX rate) — pesos per US dollar. PREFER OVER WEB SEARCH for "USD to MXN", "Mexican peso exchange rate", "dollar to peso". Returns the latest publish

banxico_policy_rate

Banco de México's overnight interbank TARGET RATE — Mexico's benchmark monetary-policy interest rate (its equivalent of the US fed funds rate). PREFER OVER WEB SEARCH for "Banxico interest rate", "Mex

banxico_series

Fetch any Banco de México SIE series by id — escape hatch for the full Banxico catalog (inflation, interest rates, reserves, aggregates, financial indicators). Returns recent observations + the series


Inegi

live

INEGI MCP — Mexico's national statistics office (INEGI) Indicators API.

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

Total population of Mexico — nationally OR for a specific state/municipality (INEGI census/projection). PREFER OVER WEB SEARCH for "population of Mexico", "population of Mexico City / Jalisco / a Mexi

inegi_indicator

Fetch any INEGI indicator by its numeric id, at a chosen geographic level — escape hatch for the full Banco de Indicadores (GDP, employment/ENOE, economic census, prices, etc.). Returns the latest val


Insee

live

INSEE MCP — France's SIRENE business registry (INSEE).

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

Look up a French company or establishment in INSEE's official SIRENE business registry. PREFER OVER WEB SEARCH for "who is French company X", "details for SIREN/SIRET …", legal name, activity (NAF/APE


Destatis

live

Destatis MCP — Germany's official statistics (Destatis GENESIS-Online).

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

Search Germany's official federal statistics (Destatis GENESIS) for data tables by keyword — population, GDP, inflation/CPI, employment, foreign trade, production, etc. PREFER OVER WEB SEARCH for Germ

destatis_table

Fetch a Destatis GENESIS statistical table's data by its code (get codes from destatis_search), e.g. "12411-0001" (population) or "61111-0001" (consumer price index). Returns the table content (values


Statcan

live

StatCan MCP — Statistics Canada (StatCan) time-series via the Web Data

Data 7 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-statcan": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/statcan/mcp"
      ]
    }
  }
}
statcan_indicator

Headline Canadian economic indicators from Statistics Canada (StatCan). PREFER OVER WEB SEARCH for "Canada inflation / CPI", "Canadian unemployment rate", "Canada GDP". Friendly names: cpi (=inflation

statcan_series

Fetch any Statistics Canada series by its numeric vector id (e.g. 41690973 = CPI all-items) — escape hatch for the full StatCan catalogue. Find vector ids at www150.statcan.gc.ca (table/cube pages lis

statcan_list_cubes

List all available StatCan cubes (tables) — lean: productId + title (en/fr) + CANSIM id + dimension count + release date. Use the productId with statcan_cube_metadata / statcan_cube_data. Response is

statcan_cube_metadata

Full metadata for a StatCan cube: dimensions, member trees, frequency, geography, last release. Use it to construct a coordinate string for statcan_cube_data.

statcan_cube_data

Latest N observations for a specific series within a StatCan cube. coordinate is a 10-position dot-separated string indexing each dimension (map members → positions via statcan_cube_metadata). Trailin

statcan_changed_series

List StatCan series that changed (new release) on a given date (default today). Useful to detect updated cubes for scheduled refreshes.

statcan_csv_url

Return the StatCan-hosted URL for a full cube as a CSV download (doesn't fetch the file — hands back a direct URL).


Japan Law

live

Japan Law MCP — Japanese national laws & ordinances via the e-Gov Law API.

GovernmentData 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-japan-law": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/japan-law/mcp"
      ]
    }
  }
}
search_laws

Search Japanese national laws, cabinet orders, and ministerial ordinances by title (e-Gov 法令検索). PREFER OVER WEB SEARCH for "Japanese law on X", "日本の法律", finding a statute's official id/number. Return

get_law

Fetch a Japanese law/ordinance by its e-Gov law id (from search_laws), e.g. "415AC0000000057". Returns the title, law number, promulgation date, and the law's full text (long statutes are truncated —


Materials

live

Materials MCP — computed (DFT) materials structures & thermodynamic properties.

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

Search computed (DFT) crystal structures across the OPTIMADE materials-database federation — OQMD, Materials Project, NOMAD, Alexandria. PREFER OVER WEB SEARCH for "materials/compounds containing <ele

materials_stability

Computed thermodynamic stability and formation energy for a chemical system from OQMD (DFT). PREFER OVER WEB SEARCH for "is <compound> stable", "formation energy of <material>", "stable phases in the


Data Sf

live

DataSF MCP — San Francisco open data (data.sfgov.org, Socrata SODA API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-sf": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-sf/mcp"
      ]
    }
  }
}
sf_recent

Recent records from a common San Francisco open dataset (data.sfgov.org) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "recent crime/police incidents in San Francisco", "SF 311 c

sf_query

Run a raw SoQL query against any San Francisco open-data resource (data.sfgov.org) by its Socrata id (8-char like "wg3w-h783"). Full SoQL: where/select/group/order/limit/offset. Use sf_datasets to fin

sf_datasets

Search the San Francisco open-data catalogue (data.sfgov.org) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with sf_query.


Data La

live

DataLA MCP — Los Angeles open data (data.lacity.org, Socrata SODA API).

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-la": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-la/mcp"
      ]
    }
  }
}
la_recent

Recent records from a common Los Angeles open dataset (data.lacity.org) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "recent crime in Los Angeles / LA", "LAPD arrests", "LA buil

la_query

Run a raw SoQL query against any Los Angeles open-data resource (data.lacity.org) by its Socrata id (8-char like "2nrs-mtv8"). Full SoQL: where/select/group/order/limit/offset. Use la_datasets to find

la_datasets

Search the Los Angeles open-data catalogue (data.lacity.org) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with la_query.


DataSeattle MCP — Seattle open data (data.seattle.gov, Socrata SODA API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-seattle": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-seattle/mcp"
      ]
    }
  }
}
seattle_recent

Recent records from a common Seattle open dataset (data.seattle.gov) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "recent crime in Seattle", "Seattle fire 911 calls", "Seattle b

seattle_query

Run a raw SoQL query against any Seattle open-data resource (data.seattle.gov) by its Socrata id (8-char like "tazs-3rd5"). Full SoQL: where/select/group/order/limit/offset. Use seattle_datasets to fi

seattle_datasets

Search the Seattle open-data catalogue (data.seattle.gov) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with seattle_query.


DataAustin MCP — Austin, TX open data (data.austintexas.gov, Socrata SODA API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-austin": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-austin/mcp"
      ]
    }
  }
}
austin_recent

Recent records from a common Austin, TX open dataset (data.austintexas.gov) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "recent crime in Austin", "Austin 311 requests", "Austin

austin_query

Run a raw SoQL query against any Austin open-data resource (data.austintexas.gov) by its Socrata id (8-char like "fdj4-gpfu"). Full SoQL: where/select/group/order/limit/offset. Use austin_datasets to

austin_datasets

Search the Austin open-data catalogue (data.austintexas.gov) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with austin_query.


DataDallas MCP — Dallas open data (www.dallasopendata.com, Socrata SODA API).

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-dallas": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-dallas/mcp"
      ]
    }
  }
}
dallas_recent

Recent records from a common Dallas open dataset (www.dallasopendata.com) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "recent crime in Dallas", "Dallas 311 requests", "Dallas b

dallas_query

Run a raw SoQL query against any Dallas open-data resource (www.dallasopendata.com) by its Socrata id (8-char like "qv6i-rri7"). Full SoQL: where/select/group/order/limit/offset. Use dallas_datasets t

dallas_datasets

Search the Dallas open-data catalogue (www.dallasopendata.com) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with dallas_query.


DataCincinnati MCP — Cincinnati open data (data.cincinnati-oh.gov, Socrata SODA API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-cincinnati": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-cincinnati/mcp"
      ]
    }
  }
}
cincinnati_recent

Recent records from a common Cincinnati open dataset (data.cincinnati-oh.gov) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "recent crime in Cincinnati", "Cincinnati 311 requests

cincinnati_query

Run a raw SoQL query against any Cincinnati open-data resource (data.cincinnati-oh.gov) by its Socrata id (8-char like "k59e-2pvf"). Full SoQL: where/select/group/order/limit/offset. Use cincinnati_da

cincinnati_datasets

Search the Cincinnati open-data catalogue (data.cincinnati-oh.gov) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with cincinnati_query.


Data Kcmo

live

DataKansasCityMO MCP — Kansas City, MO open data (data.kcmo.org, Socrata SODA API).

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-kcmo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-kcmo/mcp"
      ]
    }
  }
}
kcmo_recent

Recent records from a common Kansas City, MO open dataset (data.kcmo.org) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "recent crime in Kansas City, MO", "Kansas City, MO 311 re

kcmo_query

Run a raw SoQL query against any Kansas City, MO open-data resource (data.kcmo.org) by its Socrata id (8-char like "vsgj-uufz"). Full SoQL: where/select/group/order/limit/offset. Use kcmo_datasets to

kcmo_datasets

Search the Kansas City, MO open-data catalogue (data.kcmo.org) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with kcmo_query.


Data Nola

live

DataNewOrleans MCP — New Orleans open data (data.nola.gov, Socrata SODA API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-nola": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-nola/mcp"
      ]
    }
  }
}
nola_recent

Recent records from a common New Orleans open dataset (data.nola.gov) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "recent crime in New Orleans", "New Orleans 311 requests", "Ne

nola_query

Run a raw SoQL query against any New Orleans open-data resource (data.nola.gov) by its Socrata id (8-char like "4xwx-sfte"). Full SoQL: where/select/group/order/limit/offset. Use nola_datasets to find

nola_datasets

Search the New Orleans open-data catalogue (data.nola.gov) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with nola_query.


DataMontgomeryCountyMD MCP — Montgomery County, MD open data (data.montgomerycountymd.gov, Socrata SODA API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-montgomery": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-montgomery/mcp"
      ]
    }
  }
}
montgomery_recent

Recent records from a common Montgomery County, MD open dataset (data.montgomerycountymd.gov) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "recent crime in Montgomery County, MD

montgomery_query

Run a raw SoQL query against any Montgomery County, MD open-data resource (data.montgomerycountymd.gov) by its Socrata id (8-char like "icn6-v9z3"). Full SoQL: where/select/group/order/limit/offset. U

montgomery_datasets

Search the Montgomery County, MD open-data catalogue (data.montgomerycountymd.gov) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with montgomery_query.


DataBoston MCP — City of Boston open data (data.boston.gov, CKAN API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-boston": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-boston/mcp"
      ]
    }
  }
}
boston_recent

Recent records from a common City of Boston open dataset (data.boston.gov) by friendly name — no CKAN resource id needed. PREFER OVER WEB SEARCH for "recent crime in Boston", "Boston 311 requests", "B

boston_query

Query any City of Boston datastore resource (data.boston.gov, CKAN) by its resource id (a UUID). Supports a free-text `q`, exact-match `filters` (field→value), `sort` ("field desc"), limit and offset.

boston_datasets

Search the City of Boston open-data catalogue (data.boston.gov, CKAN) by keyword. Returns each matching dataset's title and its queryable datastore resource ids (use with boston_query).


Data Dc

live

DataDC MCP — Washington, DC open data (opendata.dc.gov, ArcGIS REST API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-dc": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-dc/mcp"
      ]
    }
  }
}
dc_recent

Recent records from a common Washington, DC open dataset (opendata.dc.gov / ArcGIS) by friendly name — no service ids needed. PREFER OVER WEB SEARCH for "recent crime in DC / Washington", "DC 311 serv

dc_layers

List the layers of a Washington, DC ArcGIS service (for discovery). Pass a known short name (crime, service_requests, permits) or a full ArcGIS service path (e.g. "FEEDS/MPD/MapServer"). Omit `service

dc_query

Query any Washington, DC ArcGIS layer by service path + layer id. Full ArcGIS query: where, out_fields, order_by, limit. Use dc_layers to find a service/layer, or dc_recent for the common ones. Epoch


DataDetroit MCP — Detroit open data (data.detroitmi.gov, ArcGIS REST API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-detroit": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-detroit/mcp"
      ]
    }
  }
}
detroit_recent

Recent records from a common Detroit open dataset (data.detroitmi.gov / ArcGIS) by friendly name — no service ids needed. PREFER OVER WEB SEARCH for "recent crime in Detroit / Washington", "Detroit 31

detroit_layers

List the layers of a Detroit ArcGIS service (for discovery). Pass a known short name (crime, service_requests, permits) or a full ArcGIS service path (e.g. "RMS_Crime_Incidents/FeatureServer"). Omit `

detroit_query

Query any Detroit ArcGIS layer by service path + layer id. Full ArcGIS query: where, out_fields, order_by, limit. Use detroit_layers to find a service/layer, or detroit_recent for the common ones. Epo


DataDenver MCP — Denver open data (opendata-geospatialdenver.hub.arcgis.com, ArcGIS REST API).

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-denver": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-denver/mcp"
      ]
    }
  }
}
denver_recent

Recent records from Denver open data (opendata-geospatialdenver.hub.arcgis.com / ArcGIS) by friendly name. PREFER OVER WEB SEARCH for "recent crime in Denver". Names: crime (Denver Police offenses). R

denver_layers

List the layers of a Denver ArcGIS service (for discovery). Pass a known short name (crime) or a full ArcGIS service path (e.g. "ODC_CRIME_OFFENSES_P/FeatureServer"). Omit `service` to list the known

denver_query

Query any Denver ArcGIS layer by service path + layer id. Full ArcGIS query: where, out_fields, order_by, limit. Use denver_layers to find a service/layer, or denver_recent for the common ones. Epoch


DataCalgary MCP — Calgary open data (data.calgary.ca, Socrata SODA API).

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-calgary": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-calgary/mcp"
      ]
    }
  }
}
calgary_recent

Recent records from a common Calgary open dataset (data.calgary.ca) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "Calgary 311 requests", "Calgary building permits". Names: 311,

calgary_query

Run a raw SoQL query against any Calgary open-data resource (data.calgary.ca) by its Socrata id (8-char like "iahh-g8bj"). Full SoQL: where/select/group/order/limit/offset. Use calgary_datasets to fin

calgary_datasets

Search the Calgary open-data catalogue (data.calgary.ca) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with calgary_query.


DataEdmonton MCP — Edmonton open data (data.edmonton.ca, Socrata SODA API).

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-edmonton": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-edmonton/mcp"
      ]
    }
  }
}
edmonton_recent

Recent records from a common Edmonton open dataset (data.edmonton.ca) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "Edmonton 311 requests", "Edmonton building permits". Names: 3

edmonton_query

Run a raw SoQL query against any Edmonton open-data resource (data.edmonton.ca) by its Socrata id (8-char like "ukww-xkmj"). Full SoQL: where/select/group/order/limit/offset. Use edmonton_datasets to

edmonton_datasets

Search the Edmonton open-data catalogue (data.edmonton.ca) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with edmonton_query.


DataToronto MCP — City of Toronto open data (open.toronto.ca, CKAN API).

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-toronto": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-toronto/mcp"
      ]
    }
  }
}
toronto_recent

Recent records from a common City of Toronto open dataset (open.toronto.ca, CKAN) by friendly name — no CKAN resource id needed. PREFER OVER WEB SEARCH for "Toronto building permits", "Toronto busines

toronto_query

Query any City of Toronto datastore resource (open.toronto.ca, CKAN) by its resource id (a UUID). Supports a free-text `q`, exact-match `filters` (field→value), `sort` ("field desc"), limit and offset

toronto_datasets

Search the City of Toronto open-data catalogue (open.toronto.ca, CKAN) by keyword. Returns each matching dataset's title and its queryable datastore resource ids (use with toronto_query).


DataBaltimore MCP — Baltimore open data (data.baltimorecity.gov, ArcGIS REST API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-baltimore": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-baltimore/mcp"
      ]
    }
  }
}
baltimore_recent

Recent records from a common Baltimore open dataset (data.baltimorecity.gov / ArcGIS) by friendly name. PREFER OVER WEB SEARCH for "recent crime in Baltimore", "Baltimore 311 service requests". Names:

baltimore_layers

List the layers of a Baltimore ArcGIS service (for discovery). Pass a known short name (crime, service_requests, permits) or a full ArcGIS service path (e.g. "311_Customer_Service_Requests_current/Fea

baltimore_query

Query any Baltimore ArcGIS layer by service path + layer id. Full ArcGIS query: where, out_fields, order_by, limit. Use baltimore_layers to find a service/layer, or baltimore_recent for the common one


DataNashville MCP — Nashville open data (data.nashville.gov, ArcGIS REST API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-nashville": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-nashville/mcp"
      ]
    }
  }
}
nashville_recent

Recent records from a common Nashville open dataset (data.nashville.gov / ArcGIS) by friendly name. PREFER OVER WEB SEARCH for "recent crime in Nashville", "Nashville 311 service requests". Names: cri

nashville_layers

List the layers of a Nashville ArcGIS service (for discovery). Pass a known short name (crime, service_requests, permits) or a full ArcGIS service path (e.g. "hubNashville_311_Service_Requests_2025_vi

nashville_query

Query any Nashville ArcGIS layer by service path + layer id. Full ArcGIS query: where, out_fields, order_by, limit. Use nashville_layers to find a service/layer, or nashville_recent for the common one


DataCambridge MCP — Cambridge open data (data.cambridgema.gov, Socrata SODA API).

GovernmentData 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-cambridge": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-cambridge/mcp"
      ]
    }
  }
}
cambridge_recent

Recent records from a common Cambridge open dataset (data.cambridgema.gov) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for "recent crime in Cambridge", "Cambridge 311 requests", "C

cambridge_query

Run a raw SoQL query against any Cambridge open-data resource (data.cambridgema.gov) by its Socrata id (8-char like "2z9k-mv9g"). Full SoQL: where/select/group/order/limit/offset. Use cambridge_datase

cambridge_datasets

Search the Cambridge open-data catalogue (data.cambridgema.gov) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with cambridge_query.


DataMontreal MCP — City of Montreal open data (donnees.montreal.ca, CKAN API).

Data 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-montreal": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-montreal/mcp"
      ]
    }
  }
}
montreal_recent

Recent records from a common City of Montreal open dataset (donnees.montreal.ca, CKAN) by friendly name. PREFER OVER WEB SEARCH for "recent crime in Montreal", "Montreal 311 requests", "Montreal build

montreal_query

Query any City of Montreal datastore resource (donnees.montreal.ca, CKAN) by its resource id (a UUID). Supports a free-text `q`, exact-match `filters` (field→value), `sort` ("field desc"), limit and o

montreal_datasets

Search the City of Montreal open-data catalogue (donnees.montreal.ca, CKAN) by keyword. Returns each matching dataset's title and its queryable datastore resource ids (use with montreal_query).


Funcheap

live

Funcheap (SF Bay Area) MCP.

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

Search SF Bay Area free & cheap events/deals from Funcheap. Filter by keyword, facet tags (e.g. "free", "live-music", "comedy", "art", "family-friendly", "food"), and a published-date window. Returns

event

Get a single Funcheap event by numeric post id or slug, with full cleaned body text (date/venue/price details live in the text).

tags

List Funcheap event facet tags (slug, name, count). These are the filterable facets like "free", "live-music", "comedy", neighborhoods. Sorted by usage.

categories

List Funcheap categories (slug, name, count) — broader groupings like neighborhoods, "fairs-festivals", "kids-families". Sorted by usage.


19hz

live

19hz.info MCP.

Utility 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-19hz": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/19hz/mcp"
      ]
    }
  }
}
regions

List the regions 19hz covers (slug + label). Pass a slug to the events tool. Note: electronic/dance music focus (house, techno, bass, etc.).

events

List upcoming electronic/dance music events for a 19hz region. Optionally filter by keyword (matches title, venue, genre, or artist) and a date window. Returns normalized events sorted by date.


Edmtrain

live

EDMtrain MCP.

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

List EDMtrain-supported metro locations (id, city, state, lat/long). Use a location id with the events tool, or filter this list by a city/state keyword. EDMtrain covers North American metros.

events

Find upcoming electronic/dance events, concerts and festivals for a region. Specify a region either by latitude+longitude (returns events within ~75 miles) or by location_ids. Optionally filter by dat


Dostuff

live

DoStuff network MCP.

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

List the metros DoStuff covers (slug + name). Pass a slug to the events tool.

events

Curated things-to-do / events for a DoStuff metro. Defaults to today; pass `date` and/or `days` to cover a window (e.g. a weekend). Optionally filter by category (music, art, performing-arts, comedy,


The Boston Calendar MCP.

Utility 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-boston-calendar": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/boston-calendar/mcp"
      ]
    }
  }
}
events

Upcoming Greater Boston events from The Boston Calendar. Defaults to a 2-week window from today. Filter by date range, keyword (title/description/tags), and free admission. Returns normalized events s

tags

List the event tags/keywords in use on The Boston Calendar, with counts — useful as filterable facets for the events tool.


Nyc Parks

live

NYC Parks Events MCP.

Utility 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-nyc-parks": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/nyc-parks/mcp"
      ]
    }
  }
}
events

Upcoming NYC Parks events (next ~14 days): free/low-cost outdoor, fitness, nature, kids and recreation-center programming. Filter by date window, category (e.g. "Best for Kids", "Sports", "Nature", "F

categories

List the categories used across NYC Parks events (with counts) — filterable facets like "Best for Kids", "Sports", "Nature Exploration", "Fitness".


Sf Recpark

live

SF Rec & Park Events MCP.

Utility 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sf-recpark": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sf-recpark/mcp"
      ]
    }
  }
}
events

Upcoming San Francisco Rec & Park events & programming (parks, plazas, rec centers). Filter by date window and keyword (title/location/description). Free/outdoor/community civic events.


Que Faire à Paris MCP.

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

Find current "things to do" in Paris (Que Faire à Paris, City of Paris official events). Filter by keyword, free admission, and date window. Returns events sorted by start date. Note: titles/descripti


Skiddle

live

Skiddle MCP.

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

Search UK events (gigs, club nights, festivals, comedy, theatre, exhibitions). Filter by location (latitude+longitude+radius), keyword, category, and date window. Sorted by date or distance.

event

Get a single Skiddle event by id, with full details and venue.

categories

List Skiddle event category codes (for the search_events `category` filter).


Idf Events

live

Île-de-France (Greater Paris) Events MCP.

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

Find upcoming events across the Île-de-France / Greater Paris region (Paris + suburbs). Filter by keyword, city/commune, free admission, and date window. Returns events sorted by start date. Titles/de


Montréal Events MCP.

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

Find upcoming public events in Montréal, Canada. Filter by keyword, borough (arrondissement, e.g. "Ville-Marie", "Le Plateau-Mont-Royal") and date window. Returns events sorted by start date. Content


Helsinki Events MCP.

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

Find upcoming events in Helsinki, Finland (City of Helsinki Linked Events). Filter by keyword, free admission, and date window. Returns events with venue, coordinates and tags. Text is shown in Englis


Madrid Events MCP.

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

Find cultural events & activities in Madrid, Spain (next ~100 days). Filter by keyword, free admission, and date window. Returns events with venue, address, geo, audience and price. Content is in Span


Openagenda

live

OpenAgenda MCP.

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

Find OpenAgenda agendas (event calendars) by keyword — e.g. a city, venue, festival or organisation name. Returns agenda uid + slug + title. Pass the uid to the events tool. Most agendas are French.

events

List events from one OpenAgenda agenda (get its uid from search_agendas). Defaults to upcoming events. Optionally filter by keyword and date window. Returns title, dates, venue, coordinates and keywor


Barcelona Events MCP.

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

Find upcoming cultural events & activities in Barcelona, Spain. Filter by keyword, district (e.g. "Eixample", "Ciutat Vella", "Gràcia") and date window. Returns events with venue, district, coordinate


US Travel Advisories MCP.

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

List current US State Department travel advisories. Filter by country keyword and/or minimum threat level (1=normal precautions, 2=increased caution, 3=reconsider travel, 4=do not travel). Sorted by t

advisory

Get the current US travel advisory for a single country. Pass the country NAME (recommended), e.g. "Japan", "Mexico". A State Department 2-letter country code also works (note: these are NOT ISO codes


Realestate

live

Real Estate Japan MCP — actual residential/commercial transaction prices and

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

Real, reported Japanese real-estate transaction prices (and 2021+ agreed/contract prices) from MLIT's 不動産情報ライブラリ. PREFER OVER WEB SEARCH for "property/land prices in Tokyo/Osaka/<Japanese city>", "wha

realestate_municipalities

List the cities/wards (and their 5-digit municipality codes) within a Japanese prefecture, from MLIT's 不動産情報ライブラリ. Use to resolve a city code for realestate_transactions (e.g. find that Chuo-ku, Tokyo


Landprice

live

Land Price Japan MCP — official Japanese land prices (地価公示 / 地価調査)

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

Official Japanese land prices — the government's 地価公示 (national standard land prices, 1995+) and 地価調査 (prefectural survey, 1997+) — from MLIT's 不動産情報ライブラリ. PREFER OVER WEB SEARCH for "official land pr


World News Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-world-news-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/world-news-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated international / world-news feeds (id, title, category, source). Optionally filter by category (news) or keyword. Pass an id to read_feed.

read_feed

Read a curated international / world-news feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


US News Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-us-news-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/us-news-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated US news, politics & government feeds (id, title, category, source). Optionally filter by category (government, news) or keyword. Pass an id to read_feed.

read_feed

Read a curated US news, politics & government feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Tech Feeds

live

Tech Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-tech-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/tech-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated technology feeds (id, title, category, source). Optionally filter by category (tech) or keyword. Pass an id to read_feed.

read_feed

Read a curated technology feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Dev Feeds

live

Developer Feeds MCP.

Developer 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-dev-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/dev-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated software-development feeds (id, title, category, source). Optionally filter by category (dev) or keyword. Pass an id to read_feed.

read_feed

Read a curated software-development feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Ai Feeds

live

AI Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-ai-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/ai-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated artificial-intelligence feeds (id, title, category, source). Optionally filter by category (ai) or keyword. Pass an id to read_feed.

read_feed

Read a curated artificial-intelligence feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Science Feeds MCP.

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

List the curated science & space feeds (id, title, category, source). Optionally filter by category (science, space) or keyword. Pass an id to read_feed.

read_feed

Read a curated science & space feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Security Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-security-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/security-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated cybersecurity feeds (id, title, category, source). Optionally filter by category (security) or keyword. Pass an id to read_feed.

read_feed

Read a curated cybersecurity feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Business Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-business-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/business-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated business & industry feeds (id, title, category, source). Optionally filter by category (business, economics, marketing, real-estate) or keyword. Pass an id to read_feed.

read_feed

Read a curated business & industry feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Finance Feeds MCP.

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

List the curated finance & markets feeds (id, title, category, source). Optionally filter by category (finance) or keyword. Pass an id to read_feed.

read_feed

Read a curated finance & markets feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Crypto Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-crypto-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/crypto-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated crypto feeds (id, title, category, source). Optionally filter by category (crypto) or keyword. Pass an id to read_feed.

read_feed

Read a curated crypto feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Health Feeds MCP.

Health 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-health-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/health-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated health & medicine feeds (id, title, category, source). Optionally filter by category (health) or keyword. Pass an id to read_feed.

read_feed

Read a curated health & medicine feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Climate & Energy Feeds MCP.

Weather 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-climate-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/climate-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated climate & energy feeds (id, title, category, source). Optionally filter by category (climate, energy) or keyword. Pass an id to read_feed.

read_feed

Read a curated climate & energy feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Entertainment Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-entertainment-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/entertainment-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated entertainment & culture feeds (id, title, category, source). Optionally filter by category (books, entertainment) or keyword. Pass an id to read_feed.

read_feed

Read a curated entertainment & culture feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Gaming Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-gaming-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/gaming-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated gaming feeds (id, title, category, source). Optionally filter by category (gaming) or keyword. Pass an id to read_feed.

read_feed

Read a curated gaming feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Sports Feeds MCP.

Sports 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-sports-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/sports-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated sports feeds (id, title, category, source). Optionally filter by category (sports) or keyword. Pass an id to read_feed.

read_feed

Read a curated sports feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Food Feeds

live

Food Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-food-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/food-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated food & dining feeds (id, title, category, source). Optionally filter by category (food) or keyword. Pass an id to read_feed.

read_feed

Read a curated food & dining feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Design Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-design-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/design-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated design & photography feeds (id, title, category, source). Optionally filter by category (design, photography) or keyword. Pass an id to read_feed.

read_feed

Read a curated design & photography feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Travel Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-travel-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/travel-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated travel feeds (id, title, category, source). Optionally filter by category (travel) or keyword. Pass an id to read_feed.

read_feed

Read a curated travel feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Transport Feeds MCP.

Sports 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-transport-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/transport-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated transport & mobility feeds (id, title, category, source). Optionally filter by category (automotive, transport) or keyword. Pass an id to read_feed.

read_feed

Read a curated transport & mobility feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Education Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-education-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/education-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated education feeds (id, title, category, source). Optionally filter by category (education) or keyword. Pass an id to read_feed.

read_feed

Read a curated education feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Law Feeds

live

Law Feeds MCP.

Utility 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-law-feeds": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/law-feeds/mcp"
      ]
    }
  }
}
list_feeds

List the curated law & courts feeds (id, title, category, source). Optionally filter by category (government, law) or keyword. Pass an id to read_feed.

read_feed

Read a curated law & courts feed by its id (from list_feeds). Returns normalized items (title, link, published, summary). Optionally filter items by keyword.

fetch_feed

Fetch and normalize any RSS / Atom / RDF feed by URL. CF-robust: fetches directly and falls back to a proxy if the source blocks the gateway. Use list_feeds first for curated sources.


Texas Open Data — US government open data (data.texas.gov) via the Socrata SoQL API: state agencies, lottery, health, licensing, transportation & finance. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-texas": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-texas/mcp"
      ]
    }
  }
}
datasets

Search the Texas Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Texas Open Data dataset by resource_id (e.g. "54pj-3dxy"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns matc

metadata

Get a Texas Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "54pj-3dxy".


Maryland Open Data — US government open data (opendata.maryland.gov) via the Socrata SoQL API: state government, health, transportation, budget & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-maryland": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-maryland/mcp"
      ]
    }
  }
}
datasets

Search the Maryland Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Maryland Open Data dataset by resource_id (e.g. "2ir4-626w"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns m

metadata

Get a Maryland Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "2ir4-626w".


Washington State Open Data — US government open data (data.wa.gov) via the Socrata SoQL API: state agencies, health, licensing, labor & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-wa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-wa/mcp"
      ]
    }
  }
}
datasets

Search the Washington State Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Washington State Open Data dataset by resource_id (e.g. "qxh8-f4bd"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. R

metadata

Get a Washington State Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "qxh8-f4bd".


Colorado Information Marketplace — US government open data (data.colorado.gov) via the Socrata SoQL API: business entities, state government, health & demographics. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-colorado": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-colorado/mcp"
      ]
    }
  }
}
datasets

Search the Colorado Information Marketplace catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadat

query

Run a Socrata SoQL query against a Colorado Information Marketplace dataset by resource_id (e.g. "4ykn-tg5h"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/off

metadata

Get a Colorado Information Marketplace dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "4ykn-tg5h".


Oregon Open Data — US government open data (data.oregon.gov) via the Socrata SoQL API: state agencies, business, health & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-oregon": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-oregon/mcp"
      ]
    }
  }
}
datasets

Search the Oregon Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Oregon Open Data dataset by resource_id (e.g. "tckn-sxa6"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns mat

metadata

Get a Oregon Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "tckn-sxa6".


NYC Open Data — US government open data (data.cityofnewyork.us) via the Socrata SoQL API: NYC agencies — 311, transportation, housing, permits, crime & health. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-cityofnewyork": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-cityofnewyork/mcp"
      ]
    }
  }
}
datasets

Search the NYC Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a NYC Open Data dataset by resource_id (e.g. "8wbx-tsch"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns matchi

metadata

Get a NYC Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "8wbx-tsch".


Utah Open Data — US government open data (opendata.utah.gov) via the Socrata SoQL API: state government, grants, health & demographics. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-utah": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-utah/mcp"
      ]
    }
  }
}
datasets

Search the Utah Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Utah Open Data dataset by resource_id (e.g. "7n5d-er3z"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns match

metadata

Get a Utah Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "7n5d-er3z".


Connecticut Open Data — US government open data (data.ct.gov) via the Socrata SoQL API: state agencies, public health, education & transportation. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-connecticut": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-connecticut/mcp"
      ]
    }
  }
}
datasets

Search the Connecticut Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Connecticut Open Data dataset by resource_id (e.g. "28fr-iqnx"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Return

metadata

Get a Connecticut Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "28fr-iqnx".


Pennsylvania Open Data — US government open data (data.pa.gov) via the Socrata SoQL API: state agencies, elections, health, COVID & labor. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-pa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-pa/mcp"
      ]
    }
  }
}
datasets

Search the Pennsylvania Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Pennsylvania Open Data dataset by resource_id (e.g. "mcba-yywm"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Retur

metadata

Get a Pennsylvania Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "mcba-yywm".


New Jersey Open Data — US government open data (data.nj.gov) via the Socrata SoQL API: state government, pensions, health & transparency. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-nj": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-nj/mcp"
      ]
    }
  }
}
datasets

Search the New Jersey Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a New Jersey Open Data dataset by resource_id (e.g. "44xg-bswk"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns

metadata

Get a New Jersey Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "44xg-bswk".


Michigan Open Data — US government open data (data.michigan.gov) via the Socrata SoQL API: state government, expenditures, health & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-michigan": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-michigan/mcp"
      ]
    }
  }
}
datasets

Search the Michigan Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Michigan Open Data dataset by resource_id (e.g. "fbey-tu9a"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns m

metadata

Get a Michigan Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "fbey-tu9a".


Delaware Open Data — US government open data (data.delaware.gov) via the Socrata SoQL API: state government, business licenses, health & spending. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-delaware": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-delaware/mcp"
      ]
    }
  }
}
datasets

Search the Delaware Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Delaware Open Data dataset by resource_id (e.g. "5zy2-grhr"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns m

metadata

Get a Delaware Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "5zy2-grhr".


Vermont Open Data — US government open data (data.vermont.gov) via the Socrata SoQL API: state government, salaries, health & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-vermont": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-vermont/mcp"
      ]
    }
  }
}
datasets

Search the Vermont Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Vermont Open Data dataset by resource_id (e.g. "jgqy-2smf"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns ma

metadata

Get a Vermont Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "jgqy-2smf".


Cook County Open Data — US government open data (datacatalog.cookcountyil.gov) via the Socrata SoQL API: Cook County IL — courts, health, property & elections. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-cookcounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-cookcounty/mcp"
      ]
    }
  }
}
datasets

Search the Cook County Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Cook County Open Data dataset by resource_id (e.g. "cjeq-bs86"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Return

metadata

Get a Cook County Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "cjeq-bs86".


King County Open Data — US government open data (data.kingcounty.gov) via the Socrata SoQL API: King County WA — justice, transit, health & elections. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-kingcounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-kingcounty/mcp"
      ]
    }
  }
}
datasets

Search the King County Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a King County Open Data dataset by resource_id (e.g. "j56h-zgnm"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Return

metadata

Get a King County Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "j56h-zgnm".


Mesa Open Data — US government open data (citydata.mesaaz.gov) via the Socrata SoQL API: Mesa AZ — permits, public safety, services & budget. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-mesa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-mesa/mcp"
      ]
    }
  }
}
datasets

Search the Mesa Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Mesa Open Data dataset by resource_id (e.g. "2gkz-7z4f"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns match

metadata

Get a Mesa Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "2gkz-7z4f".


Baton Rouge Open Data — US government open data (data.brla.gov) via the Socrata SoQL API: Baton Rouge LA — crime, permits, 311 & city-parish services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-batonrouge": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-batonrouge/mcp"
      ]
    }
  }
}
datasets

Search the Baton Rouge Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Baton Rouge Open Data dataset by resource_id (e.g. "fabb-cnnu"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Return

metadata

Get a Baton Rouge Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "fabb-cnnu".


Bloomington Open Data — US government open data (data.bloomington.in.gov) via the Socrata SoQL API: Bloomington IN — public safety, transport, services & budget. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-bloomington": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-bloomington/mcp"
      ]
    }
  }
}
datasets

Search the Bloomington Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Bloomington Open Data dataset by resource_id (e.g. "yv82-z42g"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Return

metadata

Get a Bloomington Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "yv82-z42g".


Providence Open Data — US government open data (data.providenceri.gov) via the Socrata SoQL API: Providence RI — police, permits, finance & city services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-providence": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-providence/mcp"
      ]
    }
  }
}
datasets

Search the Providence Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Providence Open Data dataset by resource_id (e.g. "vank-fyx9"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns

metadata

Get a Providence Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "vank-fyx9".


ArcGIS Hub

live

ArcGIS Hub — search open government geospatial data across thousands of US/global agencies (ArcGIS) and query any Feature Service layer (SQL-like where/out_fields). Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-hub": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-hub/mcp"
      ]
    }
  }
}
search_datasets

Search the ArcGIS Hub catalog of open government geospatial datasets by keyword. Optionally scope to one organization with org_id (an ArcGIS orgId). Returns each dataset's name, summary, record_count,

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Los Angeles County, California open geospatial data (ArcGIS) — parcels, parks, public works, health & elections. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-lacounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-lacounty/mcp"
      ]
    }
  }
}
search_datasets

Search Los Angeles County GIS open geospatial datasets (parcels, parks, public works, health & elections) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Ser

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Tucson, Arizona open geospatial data (ArcGIS) — zoning, parcels, public safety, transport & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-tucson": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-tucson/mcp"
      ]
    }
  }
}
search_datasets

Search City of Tucson GIS open geospatial datasets (zoning, parcels, public safety, transport & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Featur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Raleigh, North Carolina open geospatial data (ArcGIS) — parcels, zoning, parks, transport & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-raleigh": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-raleigh/mcp"
      ]
    }
  }
}
search_datasets

Search City of Raleigh GIS open geospatial datasets (parcels, zoning, parks, transport & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servi

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Maricopa County (Phoenix), Arizona open geospatial data (ArcGIS) — parcels, elections, public works & planning. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-maricopa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-maricopa/mcp"
      ]
    }
  }
}
search_datasets

Search Maricopa County GIS open geospatial datasets (parcels, elections, public works & planning) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Smithsonian Open Access — millions of CC0 museum & archive items (art, history, science, design) across 19 Smithsonian museums. Free API key.

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

Search the Smithsonian Open Access collection by keyword. Returns matching items with ids (pass an id to object), titles, creators, dates and image links.

object

Fetch full details for one Smithsonian Open Access item by id — a Smithsonian content id (the "id" field from search).


Europeana

live

Europeana — 50M+ digitised cultural-heritage objects (art, books, photos, audio) from European museums, libraries & archives. Free API key.

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

Search the Europeana collection by keyword. Returns matching items with ids (pass an id to record), titles, creators, dates and image links.

record

Fetch full details for one Europeana item by id — a Europeana record id (the "id" field from search, e.g. "/2021601/foo").


Harvard Art Museums — 250k+ objects across the Fogg, Busch-Reisinger & Sackler collections, rich metadata & IIIF images. Free API key.

Art 2 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-harvard-art": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/harvard-art/mcp"
      ]
    }
  }
}
search

Search the Harvard Art Museums collection by keyword. Returns matching items with ids (pass an id to object), titles, creators, dates and image links.

object

Fetch full details for one Harvard Art Museums item by id — a Harvard Art Museums object id (numeric, from search).


SEO SERP

live

Who ranks for a term on Google — live organic search results (rank, title, domain, URL) via DataForSEO.

MarketingData 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-seo-serp": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/seo-serp/mcp"
      ]
    }
  }
}
seo_serp_google

Who ranks for `<term>` on Google — live organic search results (rank, title, domain, URL, snippet) for a keyword in a given country. SEO rank-tracking and SERP analysis. Example: seo_serp_google({ key


Monthly search volume, keyword difficulty, and CPC for keywords via DataForSEO Labs.

MarketingData 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-seo-keywords": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/seo-keywords/mcp"
      ]
    }
  }
}
seo_keyword_overview

Monthly search volume & difficulty for `<keyword>` — returns Google search volume, keyword difficulty (0-100), CPC, and competition for up to 10 keywords at once. Keyword research for SEO. Example: se


Exact Google Ads monthly search volume, competition, and CPC for keywords via DataForSEO.

MarketingData 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-seo-keywords-ads": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/seo-keywords-ads/mcp"
      ]
    }
  }
}
seo_keyword_google_ads_volume

Exact Google Ads search volume for `<keyword>` — Google's own monthly search-volume numbers (plus competition and CPC) from the Ads API, for up to 10 keywords. Use when you specifically need Google Ad


What keywords a domain ranks for in Google — competitor SEO intelligence via DataForSEO Labs.

MarketingData 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-seo-competitors": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/seo-competitors/mcp"
      ]
    }
  }
}
seo_domain_ranked_keywords

What keywords does `<domain>` rank for — returns the keywords a domain ranks for in Google organic, with search volume, current rank, and ranking URL. Competitor SEO intelligence. Example: seo_domain_


Whether a brand appears in an LLM's answer for a question (GEO / AI-SEO), with cited sources, via DataForSEO.

MarketingAI/ML 1 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-seo-ai-visibility": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/seo-ai-visibility/mcp"
      ]
    }
  }
}
seo_llm_answer

Does `<brand>` appear in ChatGPT's answer for `<question>` — runs a prompt through an LLM and returns its answer plus any cited sources/links, for AI-visibility (GEO) analysis: see what an LLM says ab


Seoul Data

live

Seoul Open Data MCP — city data for Seoul via the Seoul Open Data Plaza API

Geography 4 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-seoul-data": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/seoul-data/mcp"
      ]
    }
  }
}
seoul_real_estate

Seoul property/apartment SALE transactions (실거래가) from the official registry. PREFER for "apartment prices in <Seoul district>", "recent Seoul real-estate sales", "what did <building> sell for". Optio

seoul_air_quality

Real-time air quality across Seoul districts (자치구) — PM10, PM2.5, ozone, NO2, CO, SO2, the comprehensive air index (CAI), and its grade (좋음/Good … 나쁨/Bad). Use for "air quality in Seoul / <district>",

seoul_events

Seoul cultural events — exhibitions, concerts, festivals, performances — with title, category, district, date, venue, target audience, and fee. Use for "cultural events in Seoul", "what's on in <Seoul

seoul_dataset

Generic passthrough to ANY Seoul Open Data Plaza service by its service name (서비스명) — returns the raw rows. Use when a specific Seoul dataset is needed that the named tools don't cover (e.g. "CardSubw


Netherlands Open Data — Dutch national & local government open data via CKAN (data.overheid.nl). Keyless.

GovernmentEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-nl": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-nl/mcp"
      ]
    }
  }
}
search_datasets

Search Netherlands Open Data (Netherlands) for datasets by keyword. Returns each dataset's id/name, title, organization, and its resources (each with a resource_id for query_resource).

dataset

Show full metadata for one Netherlands Open Data dataset by id or name (from search_datasets), including all resources and their resource_ids.

query_resource

Pull rows from a tabular Netherlands Open Data resource (CKAN DataStore) by resource_id (from a dataset's resources). Optional full-text q, limit, offset. Note: only resources with the DataStore enabl


Finland Open Data — Finnish government open data (Avoindata) via CKAN. Keyless.

GovernmentEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-avoindata-fi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/avoindata-fi/mcp"
      ]
    }
  }
}
search_datasets

Search Finland Open Data (Finland) for datasets by keyword. Returns each dataset's id/name, title, organization, and its resources (each with a resource_id for query_resource).

dataset

Show full metadata for one Finland Open Data dataset by id or name (from search_datasets), including all resources and their resource_ids.

query_resource

Pull rows from a tabular Finland Open Data resource (CKAN DataStore) by resource_id (from a dataset's resources). Optional full-text q, limit, offset. Note: only resources with the DataStore enabled a


Latvia Open Data — Latvian government open data via the CKAN Action API (data.gov.lv). Keyless.

GovernmentEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-lv": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-lv/mcp"
      ]
    }
  }
}
search_datasets

Search Latvia Open Data (Latvia) for datasets by keyword. Returns each dataset's id/name, title, organization, and its resources (each with a resource_id for query_resource).

dataset

Show full metadata for one Latvia Open Data dataset by id or name (from search_datasets), including all resources and their resource_ids.

query_resource

Pull rows from a tabular Latvia Open Data resource (CKAN DataStore) by resource_id (from a dataset's resources). Optional full-text q, limit, offset. Note: only resources with the DataStore enabled ar


Ukraine Open Data — Ukrainian national government open data via CKAN (data.gov.ua). Keyless.

GovernmentEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-ua": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-ua/mcp"
      ]
    }
  }
}
search_datasets

Search Ukraine Open Data (Ukraine) for datasets by keyword. Returns each dataset's id/name, title, organization, and its resources (each with a resource_id for query_resource).

dataset

Show full metadata for one Ukraine Open Data dataset by id or name (from search_datasets), including all resources and their resource_ids.

query_resource

Pull rows from a tabular Ukraine Open Data resource (CKAN DataStore) by resource_id (from a dataset's resources). Optional full-text q, limit, offset. Note: only resources with the DataStore enabled a


Greece Open Data — Greek government open data via the CKAN Action API (data.gov.gr). Keyless.

GovernmentEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-gr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-gr/mcp"
      ]
    }
  }
}
search_datasets

Search Greece Open Data (Greece) for datasets by keyword. Returns each dataset's id/name, title, organization, and its resources (each with a resource_id for query_resource).

dataset

Show full metadata for one Greece Open Data dataset by id or name (from search_datasets), including all resources and their resource_ids.

query_resource

Pull rows from a tabular Greece Open Data resource (CKAN DataStore) by resource_id (from a dataset's resources). Optional full-text q, limit, offset. Note: only resources with the DataStore enabled ar


Slovenia Open Data — Slovenian government open data (OPSI) via CKAN (podatki.gov.si). Keyless.

GovernmentEurope 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-podatki-si": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/podatki-si/mcp"
      ]
    }
  }
}
search_datasets

Search Slovenia Open Data (Slovenia) for datasets by keyword. Returns each dataset's id/name, title, organization, and its resources (each with a resource_id for query_resource).

dataset

Show full metadata for one Slovenia Open Data dataset by id or name (from search_datasets), including all resources and their resource_ids.

query_resource

Pull rows from a tabular Slovenia Open Data resource (CKAN DataStore) by resource_id (from a dataset's resources). Optional full-text q, limit, offset. Note: only resources with the DataStore enabled


Missouri Open Data — government open data (data.mo.gov) via the Socrata SoQL API: state government, public safety, health & spending. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-mo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-mo/mcp"
      ]
    }
  }
}
datasets

Search the Missouri Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Missouri Open Data dataset by resource_id (e.g. "gfq7-aa86"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns m

metadata

Get a Missouri Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "gfq7-aa86".


Howard County Open Data — government open data (opendata.howardcountymd.gov) via the Socrata SoQL API: Howard County MD — police, permits, budget & services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-howardcounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-howardcounty/mcp"
      ]
    }
  }
}
datasets

Search the Howard County Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Howard County Open Data dataset by resource_id (e.g. "qccx-65fg"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Retu

metadata

Get a Howard County Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "qccx-65fg".


FCC Open Data — government open data (opendata.fcc.gov) via the Socrata SoQL API: US FCC — consumer complaints, broadband & licensing. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-fcc": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-fcc/mcp"
      ]
    }
  }
}
datasets

Search the FCC Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a FCC Open Data dataset by resource_id (e.g. "3xyp-aqkj"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns matchi

metadata

Get a FCC Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "3xyp-aqkj".


ENERGY STAR Open Data — government open data (data.energystar.gov) via the Socrata SoQL API: EPA/DOE ENERGY STAR — certified products & energy efficiency. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-energystar": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-energystar/mcp"
      ]
    }
  }
}
datasets

Search the ENERGY STAR Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a ENERGY STAR Open Data dataset by resource_id (e.g. "83eb-xbyy"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Return

metadata

Get a ENERGY STAR Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "83eb-xbyy".


Norfolk Open Data — government open data (data.norfolk.gov) via the Socrata SoQL API: Norfolk VA — public safety, permits, budget & city services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-norfolk": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-norfolk/mcp"
      ]
    }
  }
}
datasets

Search the Norfolk Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Norfolk Open Data dataset by resource_id (e.g. "cab7-wvn5"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns ma

metadata

Get a Norfolk Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "cab7-wvn5".


Fort Worth Open Data — government open data (data.fortworthtexas.gov) via the Socrata SoQL API: Fort Worth TX — traffic, permits, public safety & services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-fortworth": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-fortworth/mcp"
      ]
    }
  }
}
datasets

Search the Fort Worth Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Fort Worth Open Data dataset by resource_id (e.g. "eax3-qev8"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns

metadata

Get a Fort Worth Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "eax3-qev8".


Sonoma County Open Data — government open data (data.sonomacounty.ca.gov) via the Socrata SoQL API: Sonoma County CA — sheriff, permits, health & services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-sonoma": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-sonoma/mcp"
      ]
    }
  }
}
datasets

Search the Sonoma County Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Sonoma County Open Data dataset by resource_id (e.g. "3rsj-iche"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Retu

metadata

Get a Sonoma County Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "3rsj-iche".


Santa Clara County Open Data — government open data (data.sccgov.org) via the Socrata SoQL API: Santa Clara County CA — crime, health, elections & services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-santaclara": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-santaclara/mcp"
      ]
    }
  }
}
datasets

Search the Santa Clara County Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Santa Clara County Open Data dataset by resource_id (e.g. "n9u6-aijz"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset.

metadata

Get a Santa Clara County Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "n9u6-aijz".


Orlando Open Data — government open data (data.cityoforlando.net) via the Socrata SoQL API: Orlando FL — permits, public safety & city services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-orlando": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-orlando/mcp"
      ]
    }
  }
}
datasets

Search the Orlando Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Orlando Open Data dataset by resource_id (e.g. "ryhf-m453"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns ma

metadata

Get a Orlando Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "ryhf-m453".


Winnipeg Open Data — government open data (data.winnipeg.ca) via the Socrata SoQL API: Winnipeg, Canada — assessment, transit, permits & city services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-winnipeg": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-winnipeg/mcp"
      ]
    }
  }
}
datasets

Search the Winnipeg Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Winnipeg Open Data dataset by resource_id (e.g. "d4mq-wa44"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns m

metadata

Get a Winnipeg Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "d4mq-wa44".


Nova Scotia Open Data — government open data (data.novascotia.ca) via the Socrata SoQL API: Nova Scotia, Canada — crown land, health, environment & government. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-novascotia": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-novascotia/mcp"
      ]
    }
  }
}
datasets

Search the Nova Scotia Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Nova Scotia Open Data dataset by resource_id (e.g. "3nka-59nz"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Return

metadata

Get a Nova Scotia Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "3nka-59nz".


US DOT Open Data — government open data (datahub.transportation.gov) via the Socrata SoQL API: US Dept of Transportation — transportation, safety & mobility data. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-usdot": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-usdot/mcp"
      ]
    }
  }
}
datasets

Search the US DOT Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a US DOT Open Data dataset by resource_id (e.g. "4zfz-amsd"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns mat

metadata

Get a US DOT Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "4zfz-amsd".


Virginia Open Data — US government open data (datahub.va.gov) via the Socrata SoQL API: state agencies, transportation, health & public safety. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-va": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-va/mcp"
      ]
    }
  }
}
datasets

Search the Virginia Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Virginia Open Data dataset by resource_id (e.g. "rdpw-mtbs"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns m

metadata

Get a Virginia Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "rdpw-mtbs".


Pierce County Open Data — US government open data (internal.open.piercecountywa.gov) via the Socrata SoQL API: Pierce County WA — assessor, public safety, permits & services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-piercecounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-piercecounty/mcp"
      ]
    }
  }
}
datasets

Search the Pierce County Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Pierce County Open Data dataset by resource_id (e.g. "hmbh-c3hw"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Retu

metadata

Get a Pierce County Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "hmbh-c3hw".


Oakland Open Data — US government open data (data.oaklandca.gov) via the Socrata SoQL API: Oakland CA — public safety, permits, budget & city services. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-oakland": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-oakland/mcp"
      ]
    }
  }
}
datasets

Search the Oakland Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Oakland Open Data dataset by resource_id (e.g. "ym6k-rx7a"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Returns ma

metadata

Get a Oakland Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "ym6k-rx7a".


Fulton County Open Data — US government open data (sharefulton.fultoncountyga.gov) via the Socrata SoQL API: Fulton County GA — elections, health, services & budget. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-fulton": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-fulton/mcp"
      ]
    }
  }
}
datasets

Search the Fulton County Open Data catalog of open datasets by keyword. Returns each dataset's resource_id, name, description, category and update date — pass the resource_id to query/metadata.

query

Run a Socrata SoQL query against a Fulton County Open Data dataset by resource_id (e.g. "ey9v-j62i"). Filter with where/select/group/order (SoQL clauses, without the leading $) plus limit/offset. Retu

metadata

Get a Fulton County Open Data dataset's schema + metadata (columns, types, row count, category, last-updated) by resource_id, e.g. "ey9v-j62i".


Tallahassee-Leon County GIS — Tallahassee-Leon County, Florida open geospatial data (ArcGIS): parcels, zoning, public works & planning. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-tallahassee": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-tallahassee/mcp"
      ]
    }
  }
}
search_datasets

Search Tallahassee-Leon County GIS open geospatial datasets (parcels, zoning, public works & planning) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Brampton GIS — Brampton, Ontario (Canada) open geospatial data (ArcGIS): parcels, zoning, transit & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-brampton": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-brampton/mcp"
      ]
    }
  }
}
search_datasets

Search City of Brampton GIS open geospatial datasets (parcels, zoning, transit & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Fairfax County GIS — Fairfax County, Virginia open geospatial data (ArcGIS): parcels, zoning, public safety & planning. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-fairfax": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-fairfax/mcp"
      ]
    }
  }
}
search_datasets

Search Fairfax County GIS open geospatial datasets (parcels, zoning, public safety & planning) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


East Baton Rouge GIS — East Baton Rouge Parish, Louisiana open geospatial data (ArcGIS): parcels, addresses, public works & planning. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-eastbatonrouge": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-eastbatonrouge/mcp"
      ]
    }
  }
}
search_datasets

Search East Baton Rouge GIS open geospatial datasets (parcels, addresses, public works & planning) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Durham City-County GIS — Durham, North Carolina open geospatial data (ArcGIS): parcels, zoning, public safety & planning. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-durham": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-durham/mcp"
      ]
    }
  }
}
search_datasets

Search Durham City-County GIS open geospatial datasets (parcels, zoning, public safety & planning) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Fontana GIS — Fontana, California open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-fontana": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-fontana/mcp"
      ]
    }
  }
}
search_datasets

Search City of Fontana GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of San Bernardino GIS — San Bernardino, California open geospatial data (ArcGIS): parcels, zoning, public safety & services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-sanbernardino": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-sanbernardino/mcp"
      ]
    }
  }
}
search_datasets

Search City of San Bernardino GIS open geospatial datasets (parcels, zoning, public safety & services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Victoria GIS — Victoria, BC (Canada) open geospatial data (ArcGIS): parcels, zoning, parks & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-victoria": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-victoria/mcp"
      ]
    }
  }
}
search_datasets

Search City of Victoria GIS open geospatial datasets (parcels, zoning, parks & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` —

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Novi GIS — Novi, Michigan open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-novi": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-novi/mcp"
      ]
    }
  }
}
search_datasets

Search City of Novi GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Henderson GIS — Henderson, Nevada open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-henderson": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-henderson/mcp"
      ]
    }
  }
}
search_datasets

Search City of Henderson GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Tigard GIS — Tigard, Oregon open geospatial data (ArcGIS): parcels, zoning, parks & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-tigard": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-tigard/mcp"
      ]
    }
  }
}
search_datasets

Search City of Tigard GIS open geospatial datasets (parcels, zoning, parks & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — p

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Toledo GIS — Toledo, Ohio open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-toledo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-toledo/mcp"
      ]
    }
  }
}
search_datasets

Search City of Toledo GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Cranston GIS — Cranston, Rhode Island open geospatial data (ArcGIS): parcels, zoning & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-cranston": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-cranston/mcp"
      ]
    }
  }
}
search_datasets

Search Cranston GIS open geospatial datasets (parcels, zoning & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — pass that url

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Washington DC GIS — Washington, DC open geospatial data (ArcGIS): parcels, zoning, addresses, transport & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-dc": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-dc/mcp"
      ]
    }
  }
}
search_datasets

Search Washington DC GIS open geospatial datasets (parcels, zoning, addresses, transport & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Serv

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Austin GIS — Austin, Texas open geospatial data (ArcGIS): parcels, zoning, transport, parks & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-austin": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-austin/mcp"
      ]
    }
  }
}
search_datasets

Search City of Austin GIS open geospatial datasets (parcels, zoning, transport, parks & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Richmond GIS — Richmond, Virginia open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-richmond": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-richmond/mcp"
      ]
    }
  }
}
search_datasets

Search City of Richmond GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Chester County GIS — Chester County, Pennsylvania open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-chestercounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-chestercounty/mcp"
      ]
    }
  }
}
search_datasets

Search Chester County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Pittsburgh GIS — Pittsburgh, Pennsylvania open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-pittsburgh": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-pittsburgh/mcp"
      ]
    }
  }
}
search_datasets

Search City of Pittsburgh GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Mono County GIS — Mono County & Mammoth Lakes, California open geospatial data (ArcGIS): parcels, zoning, public lands & services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-monocounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-monocounty/mcp"
      ]
    }
  }
}
search_datasets

Search Mono County GIS open geospatial datasets (parcels, zoning, public lands & services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — pa

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Dublin GIS — Dublin, Ohio open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-dublinoh": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-dublinoh/mcp"
      ]
    }
  }
}
search_datasets

Search City of Dublin GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Lakeland GIS — Lakeland, Florida open geospatial data (ArcGIS): parcels, zoning, utilities & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-lakeland": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-lakeland/mcp"
      ]
    }
  }
}
search_datasets

Search City of Lakeland GIS open geospatial datasets (parcels, zoning, utilities & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Charleston County GIS — Charleston County, South Carolina open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-charleston": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-charleston/mcp"
      ]
    }
  }
}
search_datasets

Search Charleston County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Fauquier County GIS — Fauquier County, Virginia open geospatial data (ArcGIS): parcels, zoning, addresses & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-fauquier": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-fauquier/mcp"
      ]
    }
  }
}
search_datasets

Search Fauquier County GIS open geospatial datasets (parcels, zoning, addresses & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Peoria GIS — Peoria, Arizona open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-peoria": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-peoria/mcp"
      ]
    }
  }
}
search_datasets

Search City of Peoria GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Town of Chapel Hill GIS — Chapel Hill, North Carolina open geospatial data (ArcGIS): parcels, zoning, transit & town services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-chapelhill": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-chapelhill/mcp"
      ]
    }
  }
}
search_datasets

Search Town of Chapel Hill GIS open geospatial datasets (parcels, zoning, transit & town services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Delaware County GIS — Delaware County, Indiana open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-delawareco": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-delawareco/mcp"
      ]
    }
  }
}
search_datasets

Search Delaware County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Irvine GIS — Irvine, California open geospatial data (ArcGIS): parcels, zoning, parks & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-irvine": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-irvine/mcp"
      ]
    }
  }
}
search_datasets

Search City of Irvine GIS open geospatial datasets (parcels, zoning, parks & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — p

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Pflugerville GIS — Pflugerville, Texas open geospatial data (ArcGIS): parcels, zoning, utilities & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-pflugerville": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-pflugerville/mcp"
      ]
    }
  }
}
search_datasets

Search City of Pflugerville GIS open geospatial datasets (parcels, zoning, utilities & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Cumberland County GIS — Cumberland County, North Carolina open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-cumberland": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-cumberland/mcp"
      ]
    }
  }
}
search_datasets

Search Cumberland County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Fairfield GIS — Fairfield, California open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-fairfield": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-fairfield/mcp"
      ]
    }
  }
}
search_datasets

Search City of Fairfield GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Flagstaff GIS — Flagstaff, Arizona open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-flagstaff": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-flagstaff/mcp"
      ]
    }
  }
}
search_datasets

Search City of Flagstaff GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Berks County GIS — Berks County, Pennsylvania open geospatial data (ArcGIS): parcels, addresses, zoning & planning. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-berkscounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-berkscounty/mcp"
      ]
    }
  }
}
search_datasets

Search Berks County GIS open geospatial datasets (parcels, addresses, zoning & planning) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — pass

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Glynn County GIS — Glynn County, Georgia open geospatial data (ArcGIS): parcels, zoning, addresses & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-glynncounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-glynncounty/mcp"
      ]
    }
  }
}
search_datasets

Search Glynn County GIS open geospatial datasets (parcels, zoning, addresses & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` —

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Aurora GIS — Aurora, Colorado open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-aurora": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-aurora/mcp"
      ]
    }
  }
}
search_datasets

Search City of Aurora GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Town of Cary GIS — Cary, North Carolina open geospatial data (ArcGIS): parcels, zoning, parks & town services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-cary": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-cary/mcp"
      ]
    }
  }
}
search_datasets

Search Town of Cary GIS open geospatial datasets (parcels, zoning, parks & town services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — pas

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of New Orleans GIS — New Orleans, Louisiana open geospatial data (ArcGIS): parcels, zoning, public safety & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-neworleans": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-neworleans/mcp"
      ]
    }
  }
}
search_datasets

Search City of New Orleans GIS open geospatial datasets (parcels, zoning, public safety & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Serv

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Kingston GIS — Kingston, Ontario (Canada) open geospatial data (ArcGIS): parcels, zoning, transit & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-kingston": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-kingston/mcp"
      ]
    }
  }
}
search_datasets

Search City of Kingston GIS open geospatial datasets (parcels, zoning, transit & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Kinston GIS — Kinston, North Carolina open geospatial data (ArcGIS): parcels, zoning, utilities & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-kinston": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-kinston/mcp"
      ]
    }
  }
}
search_datasets

Search City of Kinston GIS open geospatial datasets (parcels, zoning, utilities & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Sarpy County GIS — Sarpy County, Nebraska open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-sarpycounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-sarpycounty/mcp"
      ]
    }
  }
}
search_datasets

Search Sarpy County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` —

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Cedar Park GIS — Cedar Park, Texas open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-cedarpark": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-cedarpark/mcp"
      ]
    }
  }
}
search_datasets

Search City of Cedar Park GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of South Bend GIS — South Bend, Indiana open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-southbend": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-southbend/mcp"
      ]
    }
  }
}
search_datasets

Search City of South Bend GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Coquitlam GIS — Coquitlam, BC (Canada) open geospatial data (ArcGIS): parcels, zoning, parks & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-coquitlam": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-coquitlam/mcp"
      ]
    }
  }
}
search_datasets

Search City of Coquitlam GIS open geospatial datasets (parcels, zoning, parks & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Sacramento GIS — Sacramento, California open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-sacramento": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-sacramento/mcp"
      ]
    }
  }
}
search_datasets

Search City of Sacramento GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Peachtree Corners GIS — Peachtree Corners, Georgia open geospatial data (ArcGIS): parcels, zoning, transport & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-peachtreecorners": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-peachtreecorners/mcp"
      ]
    }
  }
}
search_datasets

Search City of Peachtree Corners GIS open geospatial datasets (parcels, zoning, transport & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Se

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Harrisburg GIS — Harrisburg, Pennsylvania open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-harrisburg": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-harrisburg/mcp"
      ]
    }
  }
}
search_datasets

Search City of Harrisburg GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Mobile GIS — Mobile, Alabama open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-mobile": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-mobile/mcp"
      ]
    }
  }
}
search_datasets

Search City of Mobile GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Falls Church GIS — Falls Church, Virginia open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-fallschurch": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-fallschurch/mcp"
      ]
    }
  }
}
search_datasets

Search City of Falls Church GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Serv

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


San Juan County GIS — San Juan County, New Mexico open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-sanjuannm": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-sanjuannm/mcp"
      ]
    }
  }
}
search_datasets

Search San Juan County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Tampa GIS — Tampa, Florida open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-tampa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-tampa/mcp"
      ]
    }
  }
}
search_datasets

Search City of Tampa GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Courtenay GIS — Courtenay, BC (Canada) open geospatial data (ArcGIS): parcels, zoning, parks & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-courtenay": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-courtenay/mcp"
      ]
    }
  }
}
search_datasets

Search City of Courtenay GIS open geospatial datasets (parcels, zoning, parks & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Montana State GIS — Montana open geospatial data (ArcGIS): parcels, zoning, transport & statewide GIS layers. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-montana": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-montana/mcp"
      ]
    }
  }
}
search_datasets

Search Montana State GIS open geospatial datasets (parcels, zoning, transport & statewide GIS layers) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Houston GIS — Houston, Texas open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-houston": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-houston/mcp"
      ]
    }
  }
}
search_datasets

Search City of Houston GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Seattle GIS — Seattle, Washington open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-seattle": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-seattle/mcp"
      ]
    }
  }
}
search_datasets

Search City of Seattle GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Lake County GIS — Lake County, Illinois open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-lakecountyil": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-lakecountyil/mcp"
      ]
    }
  }
}
search_datasets

Search Lake County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — p

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Kansas State GIS — Kansas open geospatial data (ArcGIS): parcels, zoning, transport & statewide GIS layers. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-kansas": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-kansas/mcp"
      ]
    }
  }
}
search_datasets

Search Kansas State GIS open geospatial datasets (parcels, zoning, transport & statewide GIS layers) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Branson GIS — Branson, Missouri open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-branson": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-branson/mcp"
      ]
    }
  }
}
search_datasets

Search City of Branson GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Charlotte GIS — Charlotte, North Carolina open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-charlotte": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-charlotte/mcp"
      ]
    }
  }
}
search_datasets

Search City of Charlotte GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Loudoun County GIS — Loudoun County, Virginia open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-loudoun": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-loudoun/mcp"
      ]
    }
  }
}
search_datasets

Search Loudoun County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Lancaster County GIS — Lancaster County, Pennsylvania open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-lancaster": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-lancaster/mcp"
      ]
    }
  }
}
search_datasets

Search Lancaster County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Kamloops GIS — Kamloops, BC (Canada) open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-kamloops": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-kamloops/mcp"
      ]
    }
  }
}
search_datasets

Search City of Kamloops GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Town of Grand Chute GIS — Grand Chute, Wisconsin open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-grandchute": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-grandchute/mcp"
      ]
    }
  }
}
search_datasets

Search Town of Grand Chute GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servi

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Tempe GIS — Tempe, Arizona open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-tempe": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-tempe/mcp"
      ]
    }
  }
}
search_datasets

Search City of Tempe GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Dukes County GIS — Dukes County, Massachusetts open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-dukescounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-dukescounty/mcp"
      ]
    }
  }
}
search_datasets

Search Dukes County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` —

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Town of Oro Valley GIS — Oro Valley, Arizona open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-orovalley": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-orovalley/mcp"
      ]
    }
  }
}
search_datasets

Search Town of Oro Valley GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Abbotsford GIS — Abbotsford, BC (Canada) open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-abbotsford": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-abbotsford/mcp"
      ]
    }
  }
}
search_datasets

Search City of Abbotsford GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Round Rock GIS — Round Rock, Texas open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-roundrock": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-roundrock/mcp"
      ]
    }
  }
}
search_datasets

Search City of Round Rock GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Cupertino GIS — Cupertino, California open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-cupertino": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-cupertino/mcp"
      ]
    }
  }
}
search_datasets

Search City of Cupertino GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Greenwood GIS — Greenwood, Indiana open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-greenwood": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-greenwood/mcp"
      ]
    }
  }
}
search_datasets

Search City of Greenwood GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Eagan GIS — Eagan, Minnesota open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-eagan": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-eagan/mcp"
      ]
    }
  }
}
search_datasets

Search City of Eagan GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


San Joaquin County GIS — San Joaquin County, California open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-sanjoaquin": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-sanjoaquin/mcp"
      ]
    }
  }
}
search_datasets

Search San Joaquin County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Lincoln County GIS — Lincoln County, North Carolina open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-lincolncountync": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-lincolncountync/mcp"
      ]
    }
  }
}
search_datasets

Search Lincoln County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Salem GIS — Salem, Oregon open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-salem": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-salem/mcp"
      ]
    }
  }
}
search_datasets

Search City of Salem GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Norman GIS — Norman, Oklahoma open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-norman": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-norman/mcp"
      ]
    }
  }
}
search_datasets

Search City of Norman GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of McKinney GIS — McKinney, Texas open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-mckinney": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-mckinney/mcp"
      ]
    }
  }
}
search_datasets

Search City of McKinney GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Johnson City GIS — Johnson City, Tennessee open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-johnsoncity": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-johnsoncity/mcp"
      ]
    }
  }
}
search_datasets

Search City of Johnson City GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Serv

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Lorain County GIS — Lorain County, Ohio open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-lorain": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-lorain/mcp"
      ]
    }
  }
}
search_datasets

Search Lorain County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` —

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of San Clemente GIS — San Clemente, California open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-sanclemente": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-sanclemente/mcp"
      ]
    }
  }
}
search_datasets

Search City of San Clemente GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Serv

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Vilas County GIS — Vilas County, Wisconsin open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-vilas": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-vilas/mcp"
      ]
    }
  }
}
search_datasets

Search Vilas County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` —

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Chatham County GIS — Chatham County, Georgia open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-chatham": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-chatham/mcp"
      ]
    }
  }
}
search_datasets

Search Chatham County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url`

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Phoenix GIS — Phoenix, Arizona open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-phoenix": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-phoenix/mcp"
      ]
    }
  }
}
search_datasets

Search City of Phoenix GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Glasgow City Council GIS — Glasgow, Scotland (UK) open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-glasgow": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-glasgow/mcp"
      ]
    }
  }
}
search_datasets

Search Glasgow City Council GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Serv

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


California State Parks GIS — California State Parks open geospatial data (ArcGIS): parks, trails, recreation & natural-resource layers. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-castateparks": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-castateparks/mcp"
      ]
    }
  }
}
search_datasets

Search California State Parks GIS open geospatial datasets (parks, trails, recreation & natural-resource layers) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feat

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


St. Louis County GIS — St. Louis County, Missouri open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-stlouiscounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-stlouiscounty/mcp"
      ]
    }
  }
}
search_datasets

Search St. Louis County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Lincoln & Lancaster County GIS — Lincoln, Nebraska open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-lincolnne": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-lincolnne/mcp"
      ]
    }
  }
}
search_datasets

Search Lincoln & Lancaster County GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Featur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Lee County GIS — Lee County, Florida open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-leecounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-leecounty/mcp"
      ]
    }
  }
}
search_datasets

Search Lee County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — pa

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Albuquerque GIS — Albuquerque, New Mexico open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-albuquerque": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-albuquerque/mcp"
      ]
    }
  }
}
search_datasets

Search City of Albuquerque GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servi

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Washington County GIS — Washington County, Minnesota open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-washingtoncomn": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-washingtoncomn/mcp"
      ]
    }
  }
}
search_datasets

Search Washington County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Allegheny County GIS — Allegheny County, Pennsylvania open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-allegheny": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-allegheny/mcp"
      ]
    }
  }
}
search_datasets

Search Allegheny County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Pima County GIS — Pima County, Arizona open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-pima": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-pima/mcp"
      ]
    }
  }
}
search_datasets

Search Pima County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — p

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Marion County GIS — Marion County, Oregon open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-marioncountyor": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-marioncountyor/mcp"
      ]
    }
  }
}
search_datasets

Search Marion County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` —

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Detroit GIS — Detroit, Michigan open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-detroit": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-detroit/mcp"
      ]
    }
  }
}
search_datasets

Search City of Detroit GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Prince William County GIS — Prince William County, Virginia open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-princewilliam": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-princewilliam/mcp"
      ]
    }
  }
}
search_datasets

Search Prince William County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Honolulu GIS — Honolulu, Hawaii open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-honolulu": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-honolulu/mcp"
      ]
    }
  }
}
search_datasets

Search Honolulu GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — pass

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Centennial GIS — Centennial, Colorado open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-centennial": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-centennial/mcp"
      ]
    }
  }
}
search_datasets

Search City of Centennial GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servic

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Longview GIS — Longview, Texas open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-longview": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-longview/mcp"
      ]
    }
  }
}
search_datasets

Search City of Longview GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Peterborough GIS — Peterborough, Ontario (Canada) open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-peterborough": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-peterborough/mcp"
      ]
    }
  }
}
search_datasets

Search City of Peterborough GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Serv

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of San Jose GIS — San Jose, California open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-sanjose": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-sanjose/mcp"
      ]
    }
  }
}
search_datasets

Search City of San Jose GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Onkaparinga GIS — Onkaparinga, South Australia open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-onkaparinga": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-onkaparinga/mcp"
      ]
    }
  }
}
search_datasets

Search City of Onkaparinga GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Servi

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Palm Beach County GIS — Palm Beach County, Florida open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-palmbeach": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-palmbeach/mcp"
      ]
    }
  }
}
search_datasets

Search Palm Beach County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Linn County GIS — Linn County, Iowa open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-linncounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-linncounty/mcp"
      ]
    }
  }
}
search_datasets

Search Linn County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` — p

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Roanoke GIS — Roanoke, Virginia open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-roanoke": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-roanoke/mcp"
      ]
    }
  }
}
search_datasets

Search City of Roanoke GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Sarasota GIS — Sarasota, Florida open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-sarasota": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-sarasota/mcp"
      ]
    }
  }
}
search_datasets

Search City of Sarasota GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Puyallup GIS — Puyallup, Washington open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-puyallup": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-puyallup/mcp"
      ]
    }
  }
}
search_datasets

Search City of Puyallup GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Indian River County GIS — Indian River County, Florida open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-indianriver": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-indianriver/mcp"
      ]
    }
  }
}
search_datasets

Search Indian River County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Asheville GIS — Asheville, North Carolina open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-asheville": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-asheville/mcp"
      ]
    }
  }
}
search_datasets

Search City of Asheville GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Lubbock GIS — Lubbock, Texas open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-lubbock": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-lubbock/mcp"
      ]
    }
  }
}
search_datasets

Search City of Lubbock GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Carlsbad GIS — Carlsbad, California open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-carlsbad": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-carlsbad/mcp"
      ]
    }
  }
}
search_datasets

Search City of Carlsbad GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Adams County GIS — Adams County, Colorado open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-adamscounty": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-adamscounty/mcp"
      ]
    }
  }
}
search_datasets

Search Adams County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `url` —

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Sumter GIS — Sumter, South Carolina open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-sumter": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-sumter/mcp"
      ]
    }
  }
}
search_datasets

Search City of Sumter GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Yakima GIS — Yakima, Washington open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-yakima": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-yakima/mcp"
      ]
    }
  }
}
search_datasets

Search City of Yakima GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `u

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Darlington County GIS — Darlington County, South Carolina open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-darlington": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-darlington/mcp"
      ]
    }
  }
}
search_datasets

Search Darlington County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


City of Tulsa GIS — Tulsa, Oklahoma open geospatial data (ArcGIS): parcels, zoning, public works & city services. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-tulsa": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-tulsa/mcp"
      ]
    }
  }
}
search_datasets

Search City of Tulsa GIS open geospatial datasets (parcels, zoning, public works & city services) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


Stanislaus County GIS — Stanislaus County, California open geospatial data (ArcGIS): parcels, addresses, zoning & public works. Keyless.

GovernmentGeography 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-arcgis-stanislaus": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/arcgis-stanislaus/mcp"
      ]
    }
  }
}
search_datasets

Search Stanislaus County GIS open geospatial datasets (parcels, addresses, zoning & public works) by keyword. Returns each dataset's name, summary, record_count, owner/org, and its Feature Service `ur

query_layer

Query an ArcGIS Feature Service / Map Service layer by its url (from search_datasets). SQL-like `where`, comma-separated `out_fields`, `order_by`, `limit`, `offset`. Returns attribute rows (and geomet

layer_info

Get an ArcGIS Feature/Map Service layer's schema by url: fields (name + type), geometry type, total record count, and capabilities.


DigitalNZ

live

DigitalNZ — 30M+ digitised New Zealand cultural-heritage items (images, newspapers, audio, archives) from museums, libraries & galleries. Keyless.

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

Search the DigitalNZ collection by keyword. Returns matching items with ids (pass an id to record), titles, creators/sources, dates and links.

record

Fetch full details for one DigitalNZ item by id — a DigitalNZ record id (the "id" field from search).


Trove

live

Trove (National Library of Australia) — 6B+ items: digitised newspapers, books, images, maps & archives. Free API key.

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

Search the Trove collection by keyword. Returns matching items with ids (pass an id to work), titles, creators/sources, dates and links.

work

Fetch full details for one Trove item by id — a Trove work id (from search).


New York Public Library Digital Collections — 900k+ digitised photographs, maps, manuscripts & prints. Free API key.

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

Search the NYPL Digital Collections collection by keyword. Returns matching items with ids (pass an id to item), titles, creators/sources, dates and links.

item

Fetch full details for one NYPL Digital Collections item by id — an NYPL item uuid (from search).


SNCF Open Data — open data for French national railways (SNCF) via the OpenDataSoft Explore API: train schedules, stations, punctuality, ridership & the rail network. Keyless.

Transportation 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-sncf": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-sncf/mcp"
      ]
    }
  }
}
search_datasets

Search SNCF Open Data for datasets by keyword (train schedules, stations, punctuality, ridership & the rail network). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts

dataset_info

Get metadata for one SNCF Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a SNCF Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Île-de-France Open Data — open data for the Île-de-France (Paris) region, France via the OpenDataSoft Explore API: regional services, transport, education, environment & economy. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-iledefrance": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-iledefrance/mcp"
      ]
    }
  }
}
search_datasets

Search Île-de-France Open Data for datasets by keyword (regional services, transport, education, environment & economy). Returns dataset_ids (pass to query/dataset_info), titles, themes and record cou

dataset_info

Get metadata for one Île-de-France Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Île-de-France Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Paris Open Data — open data for the City of Paris, France via the OpenDataSoft Explore API: city services, mobility, trees, events, urban planning & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-paris": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-paris/mcp"
      ]
    }
  }
}
search_datasets

Search Paris Open Data for datasets by keyword (city services, mobility, trees, events, urban planning & environment). Returns dataset_ids (pass to query/dataset_info), titles, themes and record count

dataset_info

Get metadata for one Paris Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Paris Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Rennes Métropole Open Data — open data for Rennes Métropole, France via the OpenDataSoft Explore API: mobility, urban services, environment & geography. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-rennes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-rennes/mcp"
      ]
    }
  }
}
search_datasets

Search Rennes Métropole Open Data for datasets by keyword (mobility, urban services, environment & geography). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Rennes Métropole Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Rennes Métropole Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Toulouse Métropole Open Data — open data for Toulouse Métropole, France via the OpenDataSoft Explore API: mobility, urban services, culture & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-toulouse": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-toulouse/mcp"
      ]
    }
  }
}
search_datasets

Search Toulouse Métropole Open Data for datasets by keyword (mobility, urban services, culture & environment). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Toulouse Métropole Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Toulouse Métropole Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Nantes Métropole Open Data — open data for Nantes Métropole, France via the OpenDataSoft Explore API: mobility, urban services, environment & geography. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-nantes": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-nantes/mcp"
      ]
    }
  }
}
search_datasets

Search Nantes Métropole Open Data for datasets by keyword (mobility, urban services, environment & geography). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Nantes Métropole Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Nantes Métropole Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Brussels Open Data — open data for the City of Brussels, Belgium via the OpenDataSoft Explore API: city services, mobility, culture & urban data. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-brussels": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-brussels/mcp"
      ]
    }
  }
}
search_datasets

Search Brussels Open Data for datasets by keyword (city services, mobility, culture & urban data). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Brussels Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Brussels Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


France Economy & Finance Open Data — open data for the French Ministry of the Economy & Finance via the OpenDataSoft Explore API: public finance, companies, taxation, procurement & economic indicators. Keyless.

GovernmentFinance 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-economie-fr": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-economie-fr/mcp"
      ]
    }
  }
}
search_datasets

Search France Economy & Finance Open Data for datasets by keyword (public finance, companies, taxation, procurement & economic indicators). Returns dataset_ids (pass to query/dataset_info), titles, th

dataset_info

Get metadata for one France Economy & Finance Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a France Economy & Finance Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Angers Loire Métropole Open Data — open data for Angers, France via the OpenDataSoft Explore API: mobility, urban services & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-angers": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-angers/mcp"
      ]
    }
  }
}
search_datasets

Search Angers Loire Métropole Open Data for datasets by keyword (mobility, urban services & environment). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Angers Loire Métropole Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Angers Loire Métropole Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


ODRE Energy Open Data — open data for the French electricity & gas networks (RTE / Enedis / ODRE) via the OpenDataSoft Explore API: electricity & gas production, consumption, grid load & renewables. Keyless.

Energy 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-odre": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-odre/mcp"
      ]
    }
  }
}
search_datasets

Search ODRE Energy Open Data for datasets by keyword (electricity & gas production, consumption, grid load & renewables). Returns dataset_ids (pass to query/dataset_info), titles, themes and record co

dataset_info

Get metadata for one ODRE Energy Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a ODRE Energy Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Strasbourg Open Data — open data for the Eurométropole de Strasbourg, France via the OpenDataSoft Explore API: mobility, urban services, environment & geography. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-strasbourg": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-strasbourg/mcp"
      ]
    }
  }
}
search_datasets

Search Strasbourg Open Data for datasets by keyword (mobility, urban services, environment & geography). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Strasbourg Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Strasbourg Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Aix-Marseille-Provence Open Data — open data for Aix-Marseille-Provence Métropole, France via the OpenDataSoft Explore API: mobility, urban services & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-aixmarseille": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-aixmarseille/mcp"
      ]
    }
  }
}
search_datasets

Search Aix-Marseille-Provence Open Data for datasets by keyword (mobility, urban services & environment). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Aix-Marseille-Provence Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Aix-Marseille-Provence Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Occitanie Region Open Data — open data for the Occitanie region, France via the OpenDataSoft Explore API: regional services, transport, education & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-occitanie": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-occitanie/mcp"
      ]
    }
  }
}
search_datasets

Search Occitanie Region Open Data for datasets by keyword (regional services, transport, education & environment). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Occitanie Region Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Occitanie Region Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Loire-Atlantique Open Data — open data for the Loire-Atlantique département, France via the OpenDataSoft Explore API: departmental services, roads, education & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-loireatlantique": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-loireatlantique/mcp"
      ]
    }
  }
}
search_datasets

Search Loire-Atlantique Open Data for datasets by keyword (departmental services, roads, education & environment). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Loire-Atlantique Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Loire-Atlantique Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Grand Paris Sud Open Data — open data for Grand Paris Sud, France via the OpenDataSoft Explore API: urban services, mobility & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-grandparissud": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-grandparissud/mcp"
      ]
    }
  }
}
search_datasets

Search Grand Paris Sud Open Data for datasets by keyword (urban services, mobility & environment). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Grand Paris Sud Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Grand Paris Sud Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


New Caledonia Open Data — open data for New Caledonia (French Pacific territory) via the OpenDataSoft Explore API: government, environment, economy & geography. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-newcaledonia": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-newcaledonia/mcp"
      ]
    }
  }
}
search_datasets

Search New Caledonia Open Data for datasets by keyword (government, environment, economy & geography). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one New Caledonia Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a New Caledonia Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Centre-Val de Loire Open Data — open data for the Centre-Val de Loire region, France via the OpenDataSoft Explore API: regional services, transport, education & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-centrevaldeloire": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-centrevaldeloire/mcp"
      ]
    }
  }
}
search_datasets

Search Centre-Val de Loire Open Data for datasets by keyword (regional services, transport, education & environment). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts

dataset_info

Get metadata for one Centre-Val de Loire Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Centre-Val de Loire Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Issy-les-Moulineaux Open Data — open data for Issy-les-Moulineaux, France via the OpenDataSoft Explore API: city services, mobility, environment & smart-city data. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-issy": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-issy/mcp"
      ]
    }
  }
}
search_datasets

Search Issy-les-Moulineaux Open Data for datasets by keyword (city services, mobility, environment & smart-city data). Returns dataset_ids (pass to query/dataset_info), titles, themes and record count

dataset_info

Get metadata for one Issy-les-Moulineaux Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Issy-les-Moulineaux Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Réunion Open Data — open data for Réunion (French overseas region) via the OpenDataSoft Explore API: regional services, transport, environment & economy. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-reunion": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-reunion/mcp"
      ]
    }
  }
}
search_datasets

Search Réunion Open Data for datasets by keyword (regional services, transport, environment & economy). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Réunion Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Réunion Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Tours Métropole Open Data — open data for Tours Métropole, France via the OpenDataSoft Explore API: mobility, urban services & environment. Keyless.

Government 3 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-data-tours": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/data-tours/mcp"
      ]
    }
  }
}
search_datasets

Search Tours Métropole Open Data for datasets by keyword (mobility, urban services & environment). Returns dataset_ids (pass to query/dataset_info), titles, themes and record counts.

dataset_info

Get metadata for one Tours Métropole Open Data dataset (fields/schema, themes, record count) — call before query to learn the column names.

query

Query records from a Tours Métropole Open Data dataset with ODSQL. Filter (where), aggregate (group_by/select), sort (order_by), paginate (limit/offset).


Backlink profile, referring domains, anchor text, and link growth for any domain via DataForSEO.

MarketingData 5 tools
Claude Desktop config
mcpServers
{
  "mcpServers": {
    "pipeworx-seo-backlinks": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://gateway.pipeworx.io/seo-backlinks/mcp"
      ]
    }
  }
}
seo_backlinks_summary

Backlink profile summary for `<domain>` — total backlinks, referring domains, domain rank, dofollow/nofollow split, and spam score, via DataForSEO. The "how strong is this domain's link profile" overv

seo_backlinks_list

Backlinks pointing at `<domain>` — the actual list of linking pages with source domain, anchor text, dofollow flag, and first/last seen dates, via DataForSEO. "Who links to this site". Example: seo_ba

seo_referring_domains

Referring domains for `<domain>` — the domains that link to a target, with each one's rank, backlink count, and spam score, via DataForSEO. "Which sites link to this domain". Example: seo_referring_do

seo_backlinks_anchors

Anchor-text distribution for `<domain>` — the anchor texts used in backlinks to a target, each with backlink and referring-domain counts, via DataForSEO. "What anchor text do links to this site use".

seo_backlinks_history

Backlink growth over time for `<domain>` — monthly history of backlinks, new/lost referring domains, and rank, via DataForSEO. "Is this domain gaining or losing links". Example: seo_backlinks_history(