itemit-mcp

itemit-mcp

An MCP server that enables asset tracking by providing a bridge between the itemit asset management API and the Model Context Protocol ecosystem, allowing users to search, create, and manage assets programmatically.

Category
Visit Server

README


name: itemit-mcp digest: itemit-mcp is an MCP server for asset tracking, providing a bridge between the itemit asset management API and the Model Context Protocol (MCP) ecosystem. author: umin-ai homepage: https://github.com/umin-ai/itemit-mcp capabilities: prompts: false resources: false tools: true tags:

  • asset-tracking
  • integration icon: https://ypnshonlpnarlwuocgcw.supabase.co/storage/v1/object/public/umcp-media/mcp-servers/itemit_avatar.png createTime: 2025-06-30

itemit-mcp

itemit-mcp is an MCP server for asset tracking, providing a bridge between the itemit asset management API and the Model Context Protocol (MCP) ecosystem.

Built and maintained by the uminai MCP team.


Table of Contents


Overview

itemit-mcp exposes a set of tools for interacting with the itemit asset management platform via the MCP protocol. It allows you to search, create, and manage assets and locations programmatically, making it easy to integrate itemit with other MCP-enabled systems. Following tools available:

  • Get List of items
  • Get item by name search
  • Create item
  • Location Search (With item list on it)

Prerequisites

  • Node.js (v16+ recommended)
  • Access to an itemit account (to obtain API credentials)
  • MCP Client (see uminai MCP for more info)

Obtaining itemit API Credentials

To use this MCP server, you need API credentials from itemit:

  • ITEMIT_API_KEY
  • ITEMIT_USER_ID
  • ITEMIT_USER_TOKEN
  • ITEMIT_WORKSPACE_ID

You can obtain these by signing up or logging in at itemit and following their API documentation or contacting their support.


Installation & Build

Clone this repository and install dependencies:

npm install

Build the project:

npm run build

MCP Client Configuration

Add the following to your MCP Client configuration (e.g., cline_mcp_settings.json):

{
  "mcpServers": {
    "itemit-mcp": {
      "disabled": false,
      "timeout": 60,
      "type": "stdio",
      "command": "node",
      "args": [
        "/Users/<user>/Documents/itemit-mcp/build/index.js"
      ],
      "env": {
        "ITEMIT_API_KEY": "<YOUR_API_KEY>",
        "ITEMIT_USER_ID": "<YOUR_USER_ID>",
        "ITEMIT_USER_TOKEN": "<YOUR_USER_TOKEN>",
        "ITEMIT_WORKSPACE_ID": "<YOUR_WORKSPACE_ID>"
      }
    }
  }
}

Replace the placeholder values with your actual itemit credentials.


Environment Variables

  • ITEMIT_API_KEY: Your itemit API key
  • ITEMIT_USER_ID: Your itemit user ID
  • ITEMIT_USER_TOKEN: Your itemit user token
  • ITEMIT_WORKSPACE_ID: Your itemit workspace ID

These can be set in your environment or in a .env file.


Available MCP Tools

1. get-location-by-name

  • Description: Get locations by name in itemit.
  • Parameters:
    • name (string, required): Name of the location to search for
    • limit (integer, optional): Number of locations to retrieve (default 25, max 100)
    • skip (integer, optional): Number of locations to skip (default 0)
  • Example:
    {
      "name": "Warehouse"
    }
    

2. search-item-by-name

  • Description: Search for items by name in itemit.
  • Parameters:
    • name (string, required): Name of the item to search for
    • size (integer, optional): Number of items to retrieve (default 15, max 100)
    • page (integer, optional): Page number (default 1)
  • Example:
    {
      "name": "Laptop"
    }
    

3. create-item

  • Description: Create an item in itemit.
  • Parameters:
    • name (string, required): Name of the item
    • description (string, required): Description of the item
    • serial (string, required): Serial number of the item
  • Example:
    {
      "name": "Projector",
      "description": "Epson HD Projector",
      "serial": "SN123456"
    }
    

4. get-reminders

  • Description: Get reminders from itemit.
  • Parameters: None

5. get-items

  • Description: Get items from itemit.
  • Parameters:
    • size (integer, optional): Number of items to retrieve (default 15, max 100)
  • Example:
    {
      "size": 10
    }
    

Example Usage

Use your MCP Client to invoke these tools. For example, to search for an item:

{
  "tool": "search-item-by-name",
  "arguments": {
    "name": "Laptop"
  }
}

Response Format

All responses are returned as structured text or JSON, matching the itemit API's data model. For example, a successful search might return:

{
  "content": [
    {
      "type": "text",
      "text": "Search results for \"Laptop\" (size=15):\n1. Dell XPS 13 (ID: 1234)\n2. MacBook Pro (ID: 5678)\n..."
    }
  ]
}

Credits & Further Resources


Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured