npm @theneuralledger/mcpstdioMITupdated 1mo ago
Open-source developer tools for The Neural Ledger intelligence API.
O que dá para fazer com The Neural Ledger Intelligence?
TNL Intelligence
Open-source developer tools for The Neural Ledger intelligence API.
TNL Intelligence gives AI agents and quantitative research systems structured, source-linked global event intelligence. It is an evidence and research layer, not a broker, an order router, or a source of trading-grade prices.
Packages
| Package | Purpose |
|---|---|
@theneuralledger/sdk |
Typed TypeScript client for the TNL /v1 API |
@theneuralledger/mcp |
Read-only MCP server over stdio or Streamable HTTP |
@theneuralledger/gateway |
Hosted OAuth, tenant policy, quota, and audit MCP gateway |
@theneuralledger/onboarding |
Developer credentials, static sample API, and explorer |
@theneuralledger/events |
Webhook contracts, signed delivery, and verification helpers |
@theneuralledger/research |
Evidence-first skills, orchestration, MCP App, and web UI |
@theneuralledger/adapters |
Shared Cursor and OpenAI workflow contracts and rendering |
@theneuralledger/connectors |
Shared n8n, Pipedream, and Zapier action/trigger contracts |
@theneuralledger/cli |
tnl CLI, watch command, local cache, and foreground daemon |
tnl-intelligence |
Python SDK and optional point-in-time quant research toolkit |
Quick Start
Set a member API key in the environment:
export TNL_API_KEY="..."
Run the MCP server over stdio:
npx -y @theneuralledger/mcp
Or run its localhost Streamable HTTP endpoint:
docker compose up --build
curl http://127.0.0.1:7317/healthz
Use the CLI:
npx -y @theneuralledger/cli latest
npx -y @theneuralledger/cli search "Federal Reserve"
Use the TypeScript SDK:
import { TnlClient } from '@theneuralledger/sdk';
const client = new TnlClient({ apiKey: process.env.TNL_API_KEY! });
const page = await client.listNews({ sort: 'pipeline', pageSize: 20 });
Use the Python SDK:
from tnl_intelligence import TnlClient
with TnlClient(api_key="...") as client:
page = client.list_news(sort="pipeline", page_size=20)
Security
- API keys are never accepted as visible command-line arguments.
- MCP tools are read-only and do not place trades.
- Streamable HTTP binds to
127.0.0.1by default. - Local daemon events never contain the API key.
- Hosted deployments use the separate gateway, TLS ingress, OAuth validation, tenant policy, short-lived upstream capabilities, and distributed quotas.
See SECURITY.md and the build plan. Research deployment boundaries and staged rollout are documented in Research operations.
Development
npm install
npm run openapi:sync
npm run validate
Python development uses the project under python/tnl_intelligence.
Documentation
- Architecture
- Configuration and credential handling
- Hosted gateway operations
- Developer onboarding
- Webhook operations
- Foreground daemon operations
- Publication runbook
- Distribution and product expansion strategy
- AI client adapters
- Automation connectors
- Quantitative research toolkit
- Implementation plan
- Distribution tools build plan
License
MIT
Instalação
Adicione The Neural Ledger Intelligence ao seu cliente. Escolha o que você usa.
claude mcp add mcp -- npx -y @theneuralledger/mcpcodex mcp add mcp -- npx -y @theneuralledger/mcpamp mcp add mcp -- npx -y @theneuralledger/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@theneuralledger/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@theneuralledger/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@theneuralledger/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@theneuralledger/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@theneuralledger/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@theneuralledger/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@theneuralledger/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@theneuralledger/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @theneuralledger/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Pontuação
39 / 100
Incompleta
- Documentação22/25
- Manutenção19/25
- Confiança13/20
- Capacidade0/15
- Instalação12/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 24 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
- 0 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
Histórico de versões
| Versões | Publicada |
|---|---|
| 0.1.0Mais recente | 20 de jul. de 2026 |