Add skill: tensorfeed#405
Open
RipperMercs wants to merge 1 commit into
Open
Conversation
Adds the tensorfeed skill teaching Codex when and how to use TensorFeed.ai's hosted MCP server (https://tensorfeed.ai/api/mcp) for live, machine- readable AI ecosystem and regulated-domain data. The skill covers 17 free MCP tools across: - News + AI ecosystem (3 tools) AI news, status, model pricing - Security advisories (5 tools) MITRE CVE / CISA KEV / FIRST.org EPSS / OSV.dev (x2) - Finance + filings (3 tools) SEC EDGAR search/submissions/tickers - FDA regulatory (5 tools) FAERS, SPL, recalls (x2), MAUDE - Energy + macro (1 tool) EIA series Trigger guidance: AI news / model pricing comparison / AI service status / security CVE lookup / FDA recall lookup / SEC company filing / US energy or macro indicator. Skip: pure code generation without a live-data dependency, the user wants their own private data, non-AI- domain questions. License posture: most data is US Government public domain (SEC, BLS, FRED, MITRE, CISA, EIA) or CC0 (openFDA), with FIRST.org EPSS free for any use and OSV.dev under Apache 2.0. Commercial redistribution permitted across the surface; attribution preserved on every response per upstream policies. The TF MCP server is also published as a hosted server in the official Model Context Protocol Registry as ai.tensorfeed/mcp-server. Files: skills/tensorfeed/SKILL.md skills/tensorfeed/LICENSE.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the tensorfeed skill that teaches Codex when and how to use TensorFeed.ai's hosted MCP server (
https://tensorfeed.ai/api/mcp) for live, machine-readable AI ecosystem and regulated-domain data.What it covers
The MCP server exposes 17 free tools, no auth required, across five domains:
The SKILL.md walks Codex through connection (
codex mcp add --url), trigger conditions, the tool catalog, and output discipline (preserveattribution, surfacesource/fetched_atfor freshness).Trigger guidance
The frontmatter description includes explicit trigger and skip sections per the convention seen in
skills/.curated/cli-creator/SKILL.md:License
skills/tensorfeed/LICENSE.txt)Test plan
SKILL.mdfrontmatter parses (name, description, version, author, license)tools/listwith 17 tools (verified 2026-05-09).curated/cli-creator/codex mcp add --url https://tensorfeed.ai/api/mcp tensorfeedresolves locally (operator to verify)About TensorFeed
TensorFeed.ai aggregates and re-serves machine-readable AI ecosystem data. Source: https://github.com/RipperMercs/tensorfeed. Endpoint catalog: https://tensorfeed.ai/api/meta. Also published in the official Model Context Protocol Registry as
ai.tensorfeed/mcp-server, and as connectors in anthropics/life-sciences#41, anthropics/skills#1114, anthropics/knowledge-work-plugins#221, and anthropics/financial-services#156. Each submission goes through the destination's preferred contribution path; this PR follows the openai/skillsskills/<name>/convention used by recent third-party skills like agentfeeds (#388) and Higgsfield skills (#404).