We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nendotools/tree-sitter-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Test fixture for dead code analysis - unused exports
*/
export class UsedClass {
public usedMethod(): string {
return 'used'
}
}
export class UnusedClass {
public unusedMethod(): string {
return 'unused'
}
}
export function usedFunction(): string {
return 'used'
}
export function unusedFunction(): string {
return 'unused'
}
export const USED_CONSTANT = 'used'
export const UNUSED_CONSTANT = 'unused'
export interface UsedInterface {
prop: string
}
export interface UnusedInterface {
prop: string
}
export type UsedType = string
export type UnusedType = number