barcode-lookup

barcode-lookup

3.5

The Barcode Lookup MCP server provides a comprehensive solution for retrieving detailed product information using various identification codes and search terms.

The Barcode Lookup MCP server is designed to cater to a wide range of industries by offering extensive product data fields, which include product details, attributes, descriptions, features, images, and store pricing. With access to data for over one billion items, this server facilitates seamless product data retrieval by utilizing UPC, EAN, ISBN codes, or general search terms. Its versatility makes it an ideal tool for businesses in several sectors, including e-commerce, logistics, app development, pricing comparison, data analytics, and more.

Features

  • Extensive Product Data: Access over 30 unique product data fields, providing comprehensive information about each item.
  • Wide Range of Applications: Suitable for a variety of industries, ensuring flexibility and broad applicability.
  • Efficient Data Retrieval: Quickly look up product data and pricing through UPC, EAN, ISBN codes, or search terms.

MCP Tools

  • Product: An endpoint to retrieve comprehensive product data.

Usage with Different Platforms

python

python
import requests

url = 'https://api.barcodelookup.com/v2/products'
params = {
    'barcode': '9780439625593',
    'key': 'YOUR_API_KEY'
}
response = requests.get(url, params=params)
product_data = response.json()
print(product_data)

nodejs

javascript
const axios = require('axios');

const url = 'https://api.barcodelookup.com/v2/products';
const params = {
    barcode: '9780439625593',
    key: 'YOUR_API_KEY'
};

axios.get(url, { params })
    .then(response => {
        console.log(response.data);
    })
    .catch(error => {
        console.error(error);
    });