Skip to main content
Glama

GenAIScript

Official
by microsoft
MIT License
43
2,820
  • Linux
  • Apple
nic.bicep975 B
param nicName string param location string param subnetId string param pipId string = '' @allowed([ 'Dynamic' 'Static' ]) param ipAllocationMethod string = 'Dynamic' param staticIpAddress string = '' param enableIPForwarding bool = false resource nic 'Microsoft.Network/networkInterfaces@2020-06-01' = { name: nicName location: location properties: { ipConfigurations: [ { name: 'ipconfig' properties: { primary: true privateIPAllocationMethod: ipAllocationMethod // pip is optional privateIPAddress: staticIpAddress subnet: { id: subnetId } // pip looks to be optional publicIPAddress: any((pipId == '') ? null : { id: pipId }) } } ] enableIPForwarding: enableIPForwarding } } output nicId string = nic.id output assignedIp string = nic.properties.ipConfigurations[0].properties.privateIPAddress

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/microsoft/genaiscript'

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