MCPcopy Create free account
hub / github.com/github/awesome-copilot / Tool

Interface Tool

website/src/scripts/pages/tools.ts:15–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13} from "./tools-render";
14
15export interface Tool {
16 id: string;
17 name: string;
18 title: string;
19 description: string;
20 category: string;
21 featured: boolean;
22 requirements: string[];
23 features: string[];
24 links: {
25 blog?: string;
26 vscode?: string;
27 "vscode-insiders"?: string;
28 "visual-studio"?: string;
29 github?: string;
30 documentation?: string;
31 marketplace?: string;
32 npm?: string;
33 pypi?: string;
34 };
35 configuration?: {
36 type: string;
37 content: string;
38 };
39 tags: string[];
40}
41
42interface ToolsData {
43 items: Tool[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected