Notory MCP server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Notory MCP serverlist all assets in maintenance status"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Notory MCP server
A small MCP server that lets an AI assistant work with your Notory inventory through the normal REST API.
Notory is a flexible, GDPR-compliant IT inventory and asset management (ITAM) tool - self-hosted or as EU-hosted SaaS. Product: https://notory.io/ · Docs: https://support.notory.io/
You hand it a Notory API token, point it at your instance, and the assistant can look things up ("which laptops are in maintenance?") or, if the token allows it, make changes. It never gets to do anything the token's owner couldn't do anyway - the same roles, scopes and tenant boundaries still apply.
What you get
Five tools. The first two are generic and between them cover the whole API:
notory_list_endpoints- lists the endpoints your instance exposes, so the assistant can find out what's actually availablenotory_request- calls any endpoint with any method (writes need a write-scoped token)notory_get- a read-only shortcut for plain GET requestsnotory_list_assetsandnotory_get_asset- convenience wrappers for the thing people ask about most
Because the discovery and request tools read the live OpenAPI spec of your instance, the assistant can reach all 200-odd endpoints, not just assets.
Related MCP server: mcp-swagger
Getting started
You need Node 18 or newer and an API token. Create the token in Notory under
Settings, API tokens. It's shown once and starts with inv_. Give it the read
scope if you only want look-ups, or write if the assistant should be able to
change things.
Run it straight from npm with npx - no clone, no build step:
npx -y @notory/mcpThen tell your MCP client where it lives. Most clients read a JSON config that looks like this:
{
"mcpServers": {
"notory": {
"command": "npx",
"args": ["-y", "@notory/mcp"],
"env": {
"NOTORY_BASE_URL": "https://demo.notory.io",
"NOTORY_API_TOKEN": "inv_your_token_here"
}
}
}
}Restart the client and you're set. Try asking it to list the assets in maintenance, or to show a specific asset by its serial number.
Prefer to run from source (for development)? Clone the repo, then npm install
and npm run build, and point the client at node with the absolute path to
dist/index.js.
Configuration
Two environment variables, both required:
NOTORY_BASE_URL- your instance, e.g.https://demo.notory.io(no trailing/api)NOTORY_API_TOKEN- theinv_...token; its scope decides read-only vs read/write
A word on safety
Stick to a read token unless you genuinely need writes. The server keeps no
state of its own - it just forwards your requests over HTTPS and hands the
response back. The token grants exactly the owner's permissions in exactly their
tenant, nothing more.
Development
npm run dev # tsc --watch
npm start # run the built server (needs the two env vars set)License
Proprietary. Copyright TougeTech - Raphael Ernst.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceEnables interaction with any REST API through token or login authentication, with automatic Swagger/OpenAPI documentation integration for endpoint discovery and comprehensive HTTP request support.Last updated7
- AlicenseAqualityDmaintenanceExposes Swagger/OpenAPI API documentation to AI models, enabling exploration, search, and interaction with endpoints, schemas, and execution of API calls.Last updated1452MIT
- Alicense-qualityFmaintenanceProvides AI assistants with access to OpenAPI specifications, enabling API discovery, schema retrieval, and direct API execution with support for OAuth 2.0 and other authentication methods.Last updated81MIT
- Alicense-qualityAmaintenanceEnables AI agents to discover, search, and call any REST API described by an OpenAPI or Swagger document. Supports multiple API endpoints with authentication and parameter handling.Last updated307MIT
Related MCP Connectors
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Connect AI assistants to Stellary projects, boards, documents, and governed agent workflows.
Point Gecko at an OpenAPI spec; get first-call-correct, auth-hidden agent tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ruffymk3/notory_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server