home / mcp / funding assistant mcp server
Provides an MCP server for the FluentLab Funding Assistant API with options and document checklists.
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.
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.
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 claudeConfiguration 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.
Fetch available funding options with optional pagination controls. Returns a list containing id, name, description, slug and information for each option.
Return the required documents for applying to a funding programme identified by its slug.