- Notifications
You must be signed in to change notification settings - Fork3.1k
Migrate projects toolset to modelcontextprotocol/go-sdk#1475
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Changes fromall commits
e61997c1ebfc36b36036a4a0112e1b452047edb968File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,48 +1,47 @@ | ||||||||
| { | ||||||||
| "annotations": { | ||||||||
| "title": "Add project item" | ||||||||
CopilotAI | ||||||||
| "title":"Add project item" | |
| "title":"Add project item", | |
| "readOnlyHint":false |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,39 +1,38 @@ | ||||||||
| { | ||||||||
| "annotations": { | ||||||||
| "title": "Delete project item" | ||||||||
CopilotAI | ||||||||
| "title":"Delete project item" | |
| "title":"Delete project item", | |
| "readOnlyHint":false |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,34 +1,34 @@ | ||
| { | ||
| "annotations": { | ||
| "readOnlyHint":true, | ||
| "title":"Get project" | ||
| }, | ||
| "description": "Get Project for a user or org", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "required": [ | ||
| "project_number", | ||
| "owner_type", | ||
| "owner" | ||
| ], | ||
| "properties": { | ||
| "owner": { | ||
| "type": "string", | ||
| "description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive." | ||
| }, | ||
| "owner_type": { | ||
| "type": "string", | ||
| "description": "Owner type", | ||
| "enum": [ | ||
| "user", | ||
| "org" | ||
| ] | ||
| }, | ||
| "project_number": { | ||
| "type": "number", | ||
| "description": "The project'snumber" | ||
| } | ||
| } | ||
| }, | ||
| "name": "get_project" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,39 +1,39 @@ | ||
| { | ||
| "annotations": { | ||
| "readOnlyHint":true, | ||
| "title":"Get project field" | ||
| }, | ||
| "description": "Get Project field for a user or org", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "required": [ | ||
| "owner_type", | ||
| "owner", | ||
| "project_number", | ||
| "field_id" | ||
| ], | ||
| "properties": { | ||
| "field_id": { | ||
| "type": "number", | ||
| "description": "The field's id." | ||
| }, | ||
| "owner": { | ||
| "type": "string", | ||
| "description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive." | ||
| }, | ||
| "owner_type": { | ||
| "type": "string", | ||
| "description": "Owner type", | ||
| "enum": [ | ||
| "user", | ||
| "org" | ||
| ] | ||
| }, | ||
| "project_number": { | ||
| "type": "number", | ||
| "description": "The project'snumber." | ||
| } | ||
| } | ||
| }, | ||
| "name": "get_project_field" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,46 +1,46 @@ | ||
| { | ||
| "annotations": { | ||
| "readOnlyHint":true, | ||
| "title":"Get project item" | ||
| }, | ||
| "description": "Get a specific Project item for a user or org", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "required": [ | ||
| "owner_type", | ||
| "owner", | ||
| "project_number", | ||
| "item_id" | ||
| ], | ||
| "properties": { | ||
| "fields": { | ||
| "type": "array", | ||
| "description": "Specific list of field IDs to include in the response (e.g. [\"102589\", \"985201\", \"169875\"]). If not provided, only the title field is included.", | ||
| "items": { | ||
| "type": "string" | ||
| } | ||
| }, | ||
| "item_id": { | ||
| "type": "number", | ||
| "description": "The item's ID." | ||
| }, | ||
| "owner": { | ||
| "type": "string", | ||
| "description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive." | ||
| }, | ||
| "owner_type": { | ||
| "type": "string", | ||
| "description": "Owner type", | ||
| "enum": [ | ||
| "user", | ||
| "org" | ||
| ] | ||
| }, | ||
| "project_number": { | ||
| "type": "number", | ||
| "description": "The project'snumber." | ||
| } | ||
| } | ||
| }, | ||
| "name": "get_project_item" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,46 +1,46 @@ | ||
| { | ||
| "annotations": { | ||
| "readOnlyHint":true, | ||
| "title":"List project fields" | ||
| }, | ||
| "description": "List Project fields for a user or org", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "required": [ | ||
| "owner_type", | ||
| "owner", | ||
| "project_number" | ||
| ], | ||
| "properties": { | ||
| "after": { | ||
| "type": "string", | ||
| "description": "Forward pagination cursor from previous pageInfo.nextCursor." | ||
| }, | ||
| "before": { | ||
| "type": "string", | ||
| "description": "Backward pagination cursor from previous pageInfo.prevCursor (rare)." | ||
| }, | ||
| "owner": { | ||
| "type": "string", | ||
| "description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive." | ||
| }, | ||
| "owner_type": { | ||
| "type": "string", | ||
| "description": "Owner type", | ||
| "enum": [ | ||
| "user", | ||
| "org" | ||
| ] | ||
| }, | ||
| "per_page": { | ||
| "type": "number", | ||
| "description": "Results per page (max 50)" | ||
| }, | ||
| "project_number": { | ||
| "type": "number", | ||
| "description": "The project'snumber." | ||
| } | ||
| } | ||
| }, | ||
| "name": "list_project_fields" | ||
| } |
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.