Server data from the Official MCP Registry
Hybrid search over SEC filings, earnings transcripts, and a third-party data marketplace.
Hybrid search over SEC filings, earnings transcripts, and a third-party data marketplace.
Valid MCP server (2 strong, 4 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
13 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: AETHER_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-evidinvest-aether-developer": {
"env": {
"AETHER_API_KEY": "your-aether-api-key-here"
},
"args": [
"-y",
"@evidinvest/aether-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Everything you need to call Aether — the financial-vertical agent search engine — from your own code or your favourite MCP-enabled IDE.
The repo holds two kinds of integration plus the docs that explain them:
@evidinvest/aether-mcp. Drop it into Claude
Desktop, Cursor, Cline, or any stdio-MCP client and you can search SEC
filings + earnings transcripts from chat.aether-developer/
├── docs/ — how to use Aether for search / via MCP
├── mcp/ — @evidinvest/aether-mcp (stdio MCP server)
├── clients/
│ ├── typescript/ — @evidinvest/aether-sdk
│ └── python/ — aether-sdk (PyPI)
└── examples/ — runnable demos + config snippets
Add this to your client's MCP-server config:
{
"mcpServers": {
"aether": {
"command": "npx",
"args": ["-y", "@evidinvest/aether-mcp"]
}
}
}
First run prints a device-code URL — open it, sign in, approve. Full guide:
docs/mcp.md.
pnpm add @evidinvest/aether-sdk
import { AetherClient } from "@evidinvest/aether-sdk";
const aether = new AetherClient({ apiKey: process.env.AETHER_API_KEY });
const { hits } = await aether.search({ query: "Apple supply-chain risk", limit: 5 });
Full guide: clients/typescript/README.md.
pip install aether-sdk
from aether import AetherClient
with AetherClient(api_key="ak_...") as aether:
result = aether.search(query="Apple supply-chain risk", limit=5)
for hit in result.hits:
print(hit.score, hit.section_title)
Full guide: clients/python/README.md.
docs/search.md — request/response shapes, auth, schemas.docs/mcp.md — MCP setup for Claude Desktop, Cursor, Cline, env overrides.https://aether.evidinvest.com/developer/keys
The TypeScript and Python clients are intentionally tiny — one bearer-token
fetch wrapper + typed shapes for /v1/search. Porting to Go, Rust, Java,
etc. should fit in ~150 lines. Open a PR under clients/<lang>/.
Apache-2.0 — see LICENSE.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.