A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/umin-ai/itemit-mcp below:

umin-ai/itemit-mcp: Asset Tracking made easy with itemit MCP Server. You can leverage this tools on your MCP Clients. Made by mcp.umin.ai team.

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.

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:

Obtaining itemit API Credentials

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

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

Clone this repository and install dependencies:

Build the project:

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.

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

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

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

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

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4