aiera
v1.2.1-ghast.1Search and analyze Aiera corporate events, transcripts, filings, company publications, equities, financials, broker research, Third Bridge content, and trusted web results through Aiera's official MCP server.
By Aiera, Inc.License: MIT0 GitHub starsUpdated 3 hours ago
Directory evidence
- Runtimes
- Agent Plugins
- Parsed components
- 2 skill or MCP entries
- Source updated
- Aug 30, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Get the plugin
git clone https://github.com/Trapezohe/ghast-pluginsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/aiera/.
This listing currently publishes only the generic Agent Plugins format. Automatic install commands for other clients are not generated yet.
Plugin files
├── plugin.json├── skills/aiera/SKILL.md└── mcp.json
Included Skills1
Research companies, events, transcripts, filings, company publications, equities, financials, broker research, Third Bridge interviews, and related topics through Aiera's official read-only MCP server. Use for Aiera data discovery, transcript summaries, cross-company topic searches, management commentary comparisons, and source-grounded institutional research.
MCP servers1
- command
- node
- args
- -e const os = require("node:os"); const { spawn } = require("node:child_process"); const apiKey = process.env.AIERA_API_KEY; if ( typeof apiKey !== "string" || !apiKey.trim() || /[\0\r\n]/.test(apiKey) ) { console.error( "Set AIERA_API_KEY in the Ghast host environment before starting Aiera MCP.", ); process.exit(1); } const officialBaseUrl = "https://graphql.aiera.com/api"; const configuredBaseUrl = ( process.env.AIERA_BASE_URL || officialBaseUrl ).replace(/\/+$/, ""); if (configuredBaseUrl !== officialBaseUrl) { console.error( "AIERA_BASE_URL must be https://graphql.aiera.com/api in this audited port.", ); process.exit(1); } const childEnv = { ...process.env, AIERA_BASE_URL: officialBaseUrl, LOG_LEVEL: process.env.LOG_LEVEL || "WARNING", }; for (const key of Object.keys(childEnv)) { if (key.startsWith("UV_")) delete childEnv[key]; } childEnv.UV_NO_PROGRESS = "1"; const executable = process.platform === "win32" ? "uvx.exe" : "uvx"; const args = [ "--isolated", "--no-config", "--no-env-file", "--no-progress", "--default-index", "https://pypi.org/simple", "--exclude-newer", "2026-08-08T23:59:59Z", "--with", "mcp[cli]==1.25.0", "--with", "httpx==0.28.1", "--with", "pydantic-settings==2.12.0", "--from", "git+https://github.com/aiera-inc/aiera-mcp.git@882acfc09c5e5c1eed82b6e2a64e8780503ec099", "aiera-mcp", ]; const child = spawn(executable, args, { stdio: "inherit", cwd: os.tmpdir(), env: childEnv, }); child.on("error", (error) => { console.error( `Unable to start Aiera MCP. Install Astral uv and ensure uvx is on PATH: ${error.message}`, ); process.exit(1); }); for (const signal of ["SIGINT", "SIGTERM"]) { process.on(signal, () => child.kill(signal)); } child.on("exit", (code, signal) => { if (signal) process.kill(process.pid, signal); else process.exit(code === null ? 1 : code); });
Plugin manifests1
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "aiera",
"version": "1.2.1-ghast.1",
"description": "Search and analyze Aiera corporate events, transcripts, filings, company publications, equities, financials, broker research, Third Bridge content, and trusted web results through Aiera's official MCP server.",
"author": {
"name": "Aiera, Inc.",
"url": "https://www.aiera.com"
},
"homepage": "https://www.aiera.com",
"repository": "https://github.com/aiera-inc/aiera-mcp",
"license": "MIT",
"extensions": {
"ai.trapezohe.ghast": {
"category": "data",
"upstreamRevision": "882acfc09c5e5c1eed82b6e2a64e8780503ec099",
"upstreamPath": ".",
"icon": "./assets/icon.png"
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[aiera on Agent Plugins Marketplace](https://pluginsmp.com/plugins/aiera-2)