- Home
- MCP servers
- Funding Assistant
Funding Assistant
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"fundfluent-funding-assistant": {
"command": "npx",
"args": [
"-y",
"@fundfluent/funding-assistant"
]
}
}
}This MCP server provides access to FluentLab's Funding Assistant API through a lightweight client that you run locally or in your environment. It exposes two core actions you can invoke: listing available funding options and retrieving the required documents for a funding programme. This makes it easy to integrate funding workflows into your applications or automation pipelines.
How to use
You interact with the Funding Assistant MCP server by calling its two available tools from your MCP client. Use get-funding-options to fetch a paginated list of funding options, each with its id, name, description, slug, and information. Use get-document-checklist-for-funding-programme to retrieve the exact documents you must prepare for a given funding programme, identified by its slug.
How to install
Prerequisites: node and npm must be installed on your system.
# Install the Funding Assistant MCP server for Claude Desktop via Smithery
npx -y @smithery/cli install @fundfluent-admin/funding-assistant --client claude
Additional content
Configuration and usage details are provided below to help you run and connect the MCP server smoothly. The server is designed to be invoked via a standard MCP client using the stdio flow shown in the installation steps.
Available tools
get-funding-options
Fetch available funding options with optional pagination controls. Returns a list containing id, name, description, slug and information for each option.
get-document-checklist-for-funding-programme
Return the required documents for applying to a funding programme identified by its slug.