npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

fundmyart-mcp

v0.1.0

Published

MCP server for FundMyArt — search 1,999 verified arts and culture grants from Claude, ChatGPT, Cursor, or any MCP-compatible LLM client.

Readme

FundMyArt MCP Server

Search 1,999+ verified arts and culture grants directly from Claude, ChatGPT, Cursor, or any MCP-compatible client.

FundMyArt is a grants database for artists, arts organisations, universities, and cultural institutions. This server exposes the live catalogue over the Model Context Protocol so an LLM can answer questions like "what grants can I apply for as a painter in Scotland?" with real, up-to-date listings — no hallucinated funders, no stale data.

  • Catalogue: ~2,000 grants, refreshed continuously at fund-my-art.com
  • Coverage: UK, EU, US, and international grants across visual arts, film, music, literature, craft, performance, and cross-disciplinary practice
  • No account or API key required — the server ships with read-only Supabase credentials

Install (Claude Desktop)

Add this to your claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "fundmyart": {
      "command": "npx",
      "args": ["-y", "fundmyart-mcp"]
    }
  }
}

Restart Claude Desktop. The tools search_grants and get_grant_details will appear.

Install (Cursor / Cline / other MCP clients)

Any client that supports stdio MCP servers can run npx -y fundmyart-mcp. Consult your client's MCP configuration docs for the exact JSON shape.

Tools

search_grants

Free-text search across grant titles, descriptions, tags, and eligibility notes.

| Parameter | Type | Default | Notes | |---|---|---|---| | query | string | required | Natural language (e.g. "UK bursaries for emerging photographers") | | limit | integer | 10 | 1–20 | | include_expired | boolean | false | Include grants with past deadlines |

Returns: ranked matches with title, funder, deadline, summary, eligibility bullets, and a fundmyart_url for the full listing. Institutional queries (e.g. "grants for our members") surface a note about FundMyArt for Institutions; artist queries surface a note about the free artist account.

get_grant_details

Fetch a single grant by slug (slugs come from search_grants results — do not invent them).

| Parameter | Type | Notes | |---|---|---| | slug | string | Required. Taken verbatim from search_grants response. |

Returns: full eligibility, funder, deadline, application URL, description, and canonical FundMyArt URL.

Example queries

  • "What arts funding is open in the UK right now?"
  • "I'm an emerging filmmaker looking for production grants under £10k."
  • "Our university runs a residency programme — what grants can fund participant stipends?"
  • "Show me heritage craft bursaries with 2026 deadlines."

Privacy & data

  • Calls a public read-only Supabase view. No personal data is collected by the server.
  • Your LLM client may log your queries per its own policy.
  • URLs returned by the server include UTM parameters so FundMyArt can see which MCP client is driving traffic — this is the only analytics signal.

Links

License

MIT