We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/skippr-hq/extension-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
working-directory.ts•326 B
/**
* Utility to get the working directory for Skippr files
*/
import { homedir } from 'os';
/**
* Get the working directory where .skippr files should be stored
* Currently defaults to user's home directory
* @returns The working directory path
*/
export function getWorkingDirectory(): string {
return homedir();
}