IT Asset Tracker MCP Server
Connects Claude Desktop to the IT Asset Tracker backend, enabling natural language management of assets, users, requests, and reports via 70+ auto-generated tools.
README
IT Asset Tracker MCP Server
An MCP (Model Context Protocol) server that connects Claude Desktop to the IT Asset Tracker backend, giving Claude access to 70+ tools for managing assets, users, requests, and reports.
What it does
Lets you talk to your IT management system in plain English through Claude Desktop. For example:
- "Show me all pending electronics requests"
- "List all assets assigned to a user"
- "Give me a summary report of all assets"
- "Approve the laptop request from John"
Project structure
itassettracker/
├── server.py # MCP server entry point
├── openapi_tools.py # Auto-generates tools from the backend's OpenAPI schema
├── requirements.txt # Python dependencies
├── .env # Your credentials (not committed)
└── .env.template # Template showing what goes in .env
Setup
1. Prerequisites
- Python 3.10 or higher
- Claude Desktop installed
2. Install dependencies
pip install -r requirements.txt
3. Configure credentials
Copy .env.template to .env and fill in your details:
cp .env.template .env
Edit .env:
BACKEND_BASE_URL=https://qk1ytdyqxb.execute-api.us-east-1.amazonaws.com
BACKEND_EMAIL=your_email@company.com
BACKEND_PASSWORD=your_password
Or if you prefer to use a bearer token directly:
BACKEND_BASE_URL=https://qk1ytdyqxb.execute-api.us-east-1.amazonaws.com
BACKEND_ACCESS_TOKEN=your_jwt_token_here
4. Test the server
python server.py
You should see:
BASE_URL = https://qk1ytdyqxb.execute-api.us-east-1.amazonaws.com
TOKEN EXISTS = True
INFO: Loaded 70 tools from .../openapi.json
5. Connect to Claude Desktop
Add this to your Claude Desktop config file:
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"it-asset-tracker": {
"command": "python",
"args": ["/full/path/to/server.py"],
"env": {
"BACKEND_BASE_URL": "https://qk1ytdyqxb.execute-api.us-east-1.amazonaws.com",
"BACKEND_ACCESS_TOKEN": ""
}
}
}
}
Quit and relaunch Claude Desktop. You should see a 🔨 hammer icon in the chat input.
Authentication
The server supports three auth methods (in order of priority):
- Bearer token in
.env— setBACKEND_ACCESS_TOKEN - Email + password in
.env— setBACKEND_EMAILandBACKEND_PASSWORD, server auto-logs in on startup - Set token at runtime — tell Claude: "Set auth token to eyJhbGci..."
Tokens expire after ~24 hours. Using email + password in .env is recommended so login happens automatically.
How it works
On startup, the server fetches the backend's OpenAPI schema and automatically generates an MCP tool for every API endpoint. No manual tool definitions needed — adding a new endpoint to the backend automatically makes it available to Claude.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.