Back to Browse

Altronis MCP Server

Developer ToolsModerate7.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Ask the Altronis AI advisor: grant-matched AI plans, SG AI events, news, ecosystem data. Read-only.

About

Ask the Altronis AI advisor: grant-matched AI plans, SG AI events, news, ecosystem data. Read-only.

Security Report

7.2
Moderate7.2Low Risk

This is a well-designed MCP server for read-only access to Altronis consulting APIs. The codebase demonstrates strong security practices: all operations are read-only with no mutation or lead capture, input validation is comprehensive via Zod schemas, and authentication relies on the backend Altronis API. Minor code quality issues around broad exception handling and logging do not materially impact security. Supply chain analysis found 1 known vulnerability in dependencies (0 critical, 1 high severity). Package verification found 1 issue.

7 files analyzed · 6 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Base URL of the Altronis site (default: https://altronis.sg)Optional

Environment variable: ALTRONIS_BASE_URL

HTTP timeout in milliseconds (default: 30000)Optional

Environment variable: ALTRONIS_TIMEOUT_MS

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-sypherin-altronis-mcp": {
      "env": {
        "ALTRONIS_BASE_URL": "your-altronis-base-url-here",
        "ALTRONIS_TIMEOUT_MS": "your-altronis-timeout-ms-here"
      },
      "args": [
        "-y",
        "@altronis/altronis-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

@altronis/altronis-mcp

MCP server and CLI for Altronis — Singapore AI consulting. It gives an AI agent (or you, from a shell) a set of read-only tools over the public altronis.sg endpoints: ask the Lyra consultant, generate a grant-matched AI transformation plan, and pull curated Singapore AI events, news, and business-formation data.

One codebase, two entry points:

  • altronis-mcp — a stdio MCP server for Claude Desktop, Claude Code, Cursor, and any MCP client.
  • altronis — the same tools as a command-line tool.

Read-only by design: no tool mutates anything or captures leads.

Install

npm install -g @altronis/altronis-mcp
# or run without installing:
npx @altronis/altronis-mcp --help

Use as an MCP server

Add it to your MCP client config. For Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "altronis": {
      "command": "npx",
      "args": ["-y", "@altronis/altronis-mcp"]
    }
  }
}

For Claude Code:

claude mcp add altronis -- npx -y @altronis/altronis-mcp

Then ask your agent things like "use altronis to draft an AI plan for a Singapore precision-manufacturing SME" or "what AI events are on in Singapore this month?".

Use as a CLI

altronis ask "does an on-prem LLM satisfy PDPA?"
altronis plan --sector manufacturing "40-person precision stamping SME, manual QC reports, uses Excel + WhatsApp"
altronis events 5
altronis news 5
altronis ecosystem
altronis services
altronis tool altronis_ask '{"question":"..."}'   # call any tool by name
altronis list                                       # list all tools

Output is JSON on stdout; logs go to stderr.

Tools

ToolWhat it does
altronis_askAsk Agent Lyra, the Altronis consultant, an AI/strategy/governance/grants question.
altronis_transformation_planGrant-matched AI transformation plan for a Singapore SME. sector = sport, manufacturing, or fnb.
altronis_sg_ai_eventsUpcoming AI events in Singapore (curated).
altronis_sg_ai_newsLatest curated Singapore-relevant AI news.
altronis_sg_ecosystemSingapore business-formation + industry-mix snapshot (SingStat).
altronis_servicesAltronis's six service pillars, engagement model, and contact.

Configuration

Env varDefaultPurpose
ALTRONIS_BASE_URLhttps://altronis.sgPoint at a different origin (e.g. staging or self-hosted).
ALTRONIS_TIMEOUT_MS30000Per-request timeout.

Develop

npm install
npm run build     # tsc -> dist/
npm test          # unit tests (mocked fetch)
npm run smoke     # live integration test against altronis.sg
npm run dev       # run the MCP server from source (tsx)
npm run cli -- ask "..."   # run the CLI from source

License

MIT © Altronis (altronis.sg)

Reviews

No reviews yet

Be the first to review this server!