RA1NM4KER/fineapp-mcp
An MCP server for exposing public FineApp creative listings through structured tools.
Platform-specific configuration:
{
"mcpServers": {
"fineapp-mcp": {
"command": "npx",
"args": [
"-y",
"fineapp-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
MCP server for exposing public FineApp creative listings, search, profiles, and session offerings through structured tools.
list_creativesLists public creatives.
Inputs
page optional number, default 0size optional number, default 8Example input
{ "page": 0, "size": 8 }
search_creativesSearches public creatives.
Inputs
search required stringpage optional number, default 0size optional number, default 8Example input
{ "search": "videographer", "page": 0, "size": 8 }
get_creative_profileGets a public creative profile by portfolio slug.
Inputs
slug required stringExample input
{ "slug": "chichi" }
get_creative_session_typesGets public session types and packages for a creative by creative ID.
Inputs
creativeId required numberExample input
{ "creativeId": 7 }
get_creative_full_detailsGets a creative profile and session types in a single call by portfolio slug.
Inputs
slug required stringExample input
{ "slug": "chichi" }
Example output shape
{ "profile": {}, "sessionTypes": [] }
npm install
npm run devLoading reviews...