npm @altronis/altronis-mcpstdioMITupdated 1mo ago
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.
What can you do with altronis mcp?
@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
| Tool | What it does |
|---|---|
altronis_ask |
Ask Agent Lyra, the Altronis consultant, an AI/strategy/governance/grants question. |
altronis_transformation_plan |
Grant-matched AI transformation plan for a Singapore SME. sector = sport, manufacturing, or fnb. |
altronis_sg_ai_events |
Upcoming AI events in Singapore (curated). |
altronis_sg_ai_news |
Latest curated Singapore-relevant AI news. |
altronis_sg_ecosystem |
Singapore business-formation + industry-mix snapshot (SingStat). |
altronis_services |
Altronis's six service pillars, engagement model, and contact. |
Configuration
| Env var | Default | Purpose |
|---|---|---|
ALTRONIS_BASE_URL |
https://altronis.sg |
Point at a different origin (e.g. staging or self-hosted). |
ALTRONIS_TIMEOUT_MS |
30000 |
Per-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)
Install
Add altronis mcp to your client. Pick the one you use.
claude mcp add altronis-mcp -- npx -y @altronis/altronis-mcpcodex mcp add altronis-mcp -- npx -y @altronis/altronis-mcpamp mcp add altronis-mcp -- npx -y @altronis/altronis-mcp{
"mcpServers": {
"altronis-mcp": {
"command": "npx",
"args": [
"-y",
"@altronis/altronis-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"altronis-mcp": {
"command": "npx",
"args": [
"-y",
"@altronis/altronis-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"altronis-mcp","command":"npx","args":["-y","@altronis/altronis-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"altronis-mcp": {
"command": "npx",
"args": [
"-y",
"@altronis/altronis-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"altronis-mcp": {
"command": "npx",
"args": [
"-y",
"@altronis/altronis-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"altronis-mcp": {
"command": "npx",
"args": [
"-y",
"@altronis/altronis-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"altronis-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@altronis/altronis-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"altronis-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@altronis/altronis-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @altronis/altronis-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
6 tools
altronis mcp exposes 6 tools to a connected agent.
- altronis_ask
- Ask Agent Lyra, the Altronis consultant, an AI/strategy/governance/grants question.
- altronis_transformation_plan
- Grant-matched AI transformation plan for a Singapore SME. `sector` = `sport`, `manufacturing`, or `fnb`.
- altronis_sg_ai_events
- Upcoming AI events in Singapore (curated).
- altronis_sg_ai_news
- Latest curated Singapore-relevant AI news.
- altronis_sg_ecosystem
- Singapore business-formation + industry-mix snapshot (SingStat).
- altronis_services
- Altronis's six service pillars, engagement model, and contact.
Score
65 / 100
Good
- Documentation18/25
- Maintenance16/25
- Trust13/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 44 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.1Latest | Jul 18, 2026 |