mcpbeat Sign in

Company Funding Search Agent Skill

Find company funding history, investors, and investment details

1k tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
1086
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/gooseworks-ai/goose-skills --skill company-funding-search

What comes with it

300 bytes besides the instruction
skill.meta.json

The instruction itself

14 sections, as written by the author

Setup

Read your credentials from ~/.gooseworks/credentials.json:

export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])")
export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))")

If ~/.gooseworks/credentials.json does not exist, tell the user to run: npx gooseworks login

All endpoints use Bearer auth: -H "Authorization: Bearer $GOOSEWORKS_API_KEY"

Get funding history, investors, and investment details for companies. Two APIs available:

  • Nyne: Look up specific company's funding history
  • Fiber: Search companies by funding stage/criteria

When to Use

  • User asks "how much funding has [company] raised?" → Nyne
  • User wants to know who invested in a company → Nyne
  • User wants to find companies by funding stage → Fiber
  • User asks "find Series B AI companies" → Fiber
  • Targeting companies by funding criteria → Fiber

Option 1: Nyne (Specific Company Lookup)

Best for: Looking up a known company's funding history and investors.

Get Company Funding History

Step 1: Start the lookup (POST)

curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"","path":"","body":{"company_name":"Anthropic"}}'

Returns a request_id. Then poll:

Step 2: Poll for results (GET)

curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"nyne","path":"/company/funding","query":{"request_id":"YOUR_REQUEST_ID"}}'

<details>

<summary>curl equivalent</summary>

# Step 1: Start lookup
curl -X POST https://api.orth.sh/v1/run/nyne/company/funding \

  -H "Content-Type: application/json" \
  -d '{"company_name":"Anthropic"}'

# Step 2: Poll for results
curl "https://api.orth.sh/v1/run/nyne/company/funding?request_id=YOUR_REQUEST_ID" \

</details>

Get Company Investors/Funders

curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"","path":"","body":{"company_domain":"stripe.com"}}'

<details>

<summary>curl equivalent</summary>

curl -X POST https://api.orth.sh/v1/run/nyne/company/funders \

  -H "Content-Type: application/json" \
  -d '{"company_domain":"stripe.com"}'

</details>

Nyne Parameters

  • company_name - Company name (e.g., "Anthropic") - works better
  • company_domain - Company domain (e.g., "anthropic.com")

Option 2: Fiber (Search Companies by Funding)

Best for: Finding companies by funding stage, industry, location, etc.

curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"","path":"","body":{"query":"AI companies that raised Series B in 2024","limit":10}}'

<details>

<summary>curl equivalent</summary>

curl -X POST https://api.orth.sh/v1/run/fiber/v1/natural-language-search/companies \

  -H "Content-Type: application/json" \
  -d '{"query":"AI companies that raised Series B in 2024","limit":10}'

</details>

Search for investors/VCs (filter-based, not natural language):

curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \
  -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"api":"","path":"","body":{"searchParams":{},"limit":10}}'

<details>

<summary>curl equivalent</summary>

curl -X POST https://api.orth.sh/v1/run/fiber/v1/investor-search \

  -H "Content-Type: application/json" \
  -d '{"searchParams":{},"limit":10}'

</details>

Returns top investors with:

  • Total investments, lead rate
  • Investment breakdown by stage
  • Recent investments
  • LinkedIn, logo, social links

Fiber Response Includes

  • Company name, domain, LinkedIn
  • Funding rounds with dates and amounts
  • Investors per round (lead vs participating)
  • Employee count, location, industry
  • Total funding, latest funding stage
  • Similar companies

When to Use Which

| Use Case | API | Endpoint |

|----------|-----|----------|

| "How much has Anthropic raised?" | Nyne | /company/funding |

| "Who invested in Stripe?" | Nyne | /company/funders |

| "Find Series A AI startups" | Fiber | /v1/natural-language-search/companies |

| "Find top VCs" | Fiber | /v1/investor-search |

| "Companies that raised $10M+ in 2024" | Fiber | /v1/natural-language-search/companies |

Error Handling

  • Nyne is async: POST returns request_id, poll with GET — results take 5-20 seconds
  • 404 — Company not found; try alternate name or domain
  • 429 — Rate limit exceeded; wait and retry
  • Fiber returns empty results for very niche queries — broaden search terms
  • company_name works better than company_domain for Nyne lookups

Tips

  • Nyne is async: Start with POST, poll with GET using request_id (5-20 seconds)
  • Fiber is sync: Returns results immediately
  • company_name > company_domain for Nyne lookups
  • Fiber's natural language search is very flexible - just describe what you want
  • Fiber returns rich company data including similar companies

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take gooseworks-ai/company-funding-search from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference npx. Without those the skill loads but fails at the first command.