Skip to main content
Glama
InditexTech

MCP Microsoft Teams Server

by InditexTech

start_thread

Create a new Microsoft Teams thread by providing a title and content, with an option to mention a member to draw their attention.

Instructions

Start a new thread with a given title and content

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesThe thread title
contentYesThe thread content
member_nameNoMember name to mention in the thread

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesMessage title
contentYesMessage content
thread_idYesThread ID as a string in the format '1743086901347'

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed3 schema fields changedv1.0.13
    • addedInput schema / properties / content / minLength
      Added value: +1
    • changedInput schema / properties / member_name / anyOf
      Previous value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "minLength": 1,
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / title / minLength
      Added value: +1
  2. Changed1 schema field changedv1.0.8
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "content": {
      +      "description": "Message content",
      +      "title": "Content",
      +      "type": "string"
      +    },
      +    "thread_id": {
      +      "description": "Thread ID as a string in the format '1743086901347'",
      +      "title": "Thread Id",
      +      "type": "string"
      +    },
      +    "title": {
      +      "description": "Message title",
      +      "title": "Title",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "thread_id",
      +    "title",
      +    "content"
      +  ],
      +  "title": "TeamsThread",
      +  "type": "object"
      +}
  3. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral burden, and it does state the core side effect: creating a new thread. However, it does not disclose what the tool returns, whether the operation is idempotent, or how the optional member_name mention behaves beyond the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, information-dense sentence with no filler or redundant restatement. It front-loads the primary action and is easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a low-complexity create operation with a complete schema and an output schema available, the description is nearly sufficient. The main gap is the lack of explicit usage guidance, but an agent can still select and invoke the tool correctly using the name, description, and sibling context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, so the baseline applies. The description repeats title and content details already in the schema and adds nothing about the optional member_name parameter, though that parameter is fully documented in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the action ('start') and resource ('a new thread') and distinguishes it from sibling operations like update_thread, read_thread, and list_threads. The inclusion of 'title and content' reinforces the purpose without ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied by the word 'new' and by contrast with sibling tool names, but there is no explicit statement about when to choose this over update_thread or read_thread. An agent can infer the intended case, but the guidance is not explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

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/InditexTech/mcp-teams-server'

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