Skip to main content
Glama

Azure DevOps MCP Server

tool-definitions.ts1.5 kB
import { zodToJsonSchema } from 'zod-to-json-schema'; import { ToolDefinition } from '../../shared/types/tool-definition'; import { GetWikisSchema } from './get-wikis/schema'; import { GetWikiPageSchema } from './get-wiki-page/schema'; import { CreateWikiSchema } from './create-wiki/schema'; import { UpdateWikiPageSchema } from './update-wiki-page/schema'; import { ListWikiPagesSchema } from './list-wiki-pages/schema'; import { CreateWikiPageSchema } from './create-wiki-page/schema'; /** * List of wikis tools */ export const wikisTools: ToolDefinition[] = [ { name: 'get_wikis', description: 'Get details of wikis in a project', inputSchema: zodToJsonSchema(GetWikisSchema), }, { name: 'get_wiki_page', description: 'Get the content of a wiki page', inputSchema: zodToJsonSchema(GetWikiPageSchema), }, { name: 'create_wiki', description: 'Create a new wiki in the project', inputSchema: zodToJsonSchema(CreateWikiSchema), }, { name: 'update_wiki_page', description: 'Update content of a wiki page', inputSchema: zodToJsonSchema(UpdateWikiPageSchema), }, { name: 'list_wiki_pages', description: 'List pages within an Azure DevOps wiki', inputSchema: zodToJsonSchema(ListWikiPagesSchema), }, { name: 'create_wiki_page', description: 'Create a new page in a wiki. If the page already exists at the specified path, it will be updated.', inputSchema: zodToJsonSchema(CreateWikiPageSchema), }, ];

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Tiberriver256/mcp-server-azure-devops'

If you have feedback or need assistance with the MCP directory API, please join our Discord server