Skip to main content
Glama
ConsentirDev

BuyICT MCP Server

by ConsentirDev

list_marketplaces

Retrieve available procurement marketplaces and types to identify suitable channels for Australian Government ICT opportunities through the BuyICT platform.

Instructions

Get list of available marketplaces/procurement types

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler for the list_marketplaces tool that retrieves marketplaces from the ServiceNow client and returns them as formatted JSON.
    case 'list_marketplaces': {
      const marketplaces = snClient.getMarketplaces();
    
      return {
        content: [
          {
            type: 'text',
            text: JSON.stringify(marketplaces, null, 2),
          },
        ],
      };
    }
  • src/index.ts:102-109 (registration)
    Tool registration including name, description, and input schema (empty object).
    {
      name: 'list_marketplaces',
      description: 'Get list of available marketplaces/procurement types',
      inputSchema: {
        type: 'object',
        properties: {}
      }
    }
  • Helper method in ServiceNowClient that returns the configured list of marketplaces.
     * Get list of marketplaces
     */
    getMarketplaces(): Marketplace[] {
      return this.config.marketplaces;
    }

Latest Blog Posts

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/ConsentirDev/buyict.mcp'

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