-
Notifications
You must be signed in to change notification settings - Fork 4.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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
e61997c
1ebfc36
b36036a
4a0112e
1b45204
7edb968
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,48 +1,47 @@ | ||||||||
| { | ||||||||
| "annotations": { | ||||||||
| "title": "Add project item", | ||||||||
| "readOnlyHint": false | ||||||||
| "title": "Add project item" | ||||||||
|
||||||||
| "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", | ||||||||
| "readOnlyHint": false | ||||||||
| "title": "Delete project item" | ||||||||
|
||||||||
| "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": { | ||
| "title": "Get project", | ||
| "readOnlyHint": true | ||
| "readOnlyHint": true, | ||
| "title": "Get project" | ||
| }, | ||
| "description": "Get Project for a user or org", | ||
| "inputSchema": { | ||
| "type": "object", | ||
| "required": [ | ||
| "project_number", | ||
| "owner_type", | ||
| "owner" | ||
| ], | ||
| "properties": { | ||
| "owner": { | ||
| "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.", | ||
| "type": "string" | ||
| "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" | ||
| ], | ||
| "type": "string" | ||
| ] | ||
| }, | ||
| "project_number": { | ||
| "description": "The project's number", | ||
| "type": "number" | ||
| "type": "number", | ||
| "description": "The project's number" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "project_number", | ||
| "owner_type", | ||
| "owner" | ||
| ], | ||
| "type": "object" | ||
| } | ||
| }, | ||
| "name": "get_project" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,39 +1,39 @@ | ||
| { | ||
| "annotations": { | ||
| "title": "Get project field", | ||
| "readOnlyHint": true | ||
| "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": { | ||
| "description": "The field's id.", | ||
| "type": "number" | ||
| "type": "number", | ||
| "description": "The field's id." | ||
| }, | ||
| "owner": { | ||
| "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.", | ||
| "type": "string" | ||
| "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" | ||
| ], | ||
| "type": "string" | ||
| ] | ||
| }, | ||
| "project_number": { | ||
| "description": "The project's number.", | ||
| "type": "number" | ||
| "type": "number", | ||
| "description": "The project's number." | ||
| } | ||
| }, | ||
| "required": [ | ||
| "owner_type", | ||
| "owner", | ||
| "project_number", | ||
| "field_id" | ||
| ], | ||
| "type": "object" | ||
| } | ||
| }, | ||
| "name": "get_project_field" | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these generated docs changes deliberate in that PR