We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Wolfe-Jam/claude-faf-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* 🇬🇧 faf innit - British Init Command (Mk3 Bundled)
* "Innit bruv" - Initialize with style
*/
import { initFafFile, InitOptions, InitResult } from './init';
export { InitOptions, InitResult };
export async function innitFafFile(projectPath?: string, options: InitOptions = {}): Promise<InitResult> {
// Just delegate to init - same functionality, British flavor
return initFafFile(projectPath, options);
}