@feedmob/github-issues 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
1
  // If the format of this file changes, so it doesn't simply export a VERSION constant,
2
2
  // this will break .github/workflows/version-check.yml.
3
- export const VERSION = "0.0.4";
3
+ export const VERSION = "0.0.6";
package/dist/index.js CHANGED
@@ -85,6 +85,9 @@ server.addTool({
85
85
  if (args.labels !== undefined) {
86
86
  args.labels.forEach(label => params.append('labels[]', label));
87
87
  }
88
+ if (args.score_status !== undefined) {
89
+ params.set('score_status', args.score_status);
90
+ }
88
91
  const response = await fetch(`${AI_API_URL}/issues?${params}`, {
89
92
  method: 'GET',
90
93
  headers: {
@@ -11,6 +11,7 @@ export const FeedmobSearchOptions = z.object({
11
11
  team: z.string().optional().describe("The team name, e.g., 'Star', 'Mighty'"),
12
12
  title: z.string().optional().describe("The title of the issue, supports fuzzy matching"),
13
13
  labels: z.array(z.string()).optional().describe("Labels to filter issues by"),
14
+ score_status: z.string().optional().describe("The issue score status, e.g., 'not scored', 'scored'"),
14
15
  fields: z.array(z.string()).describe("Fields to return for each issue, available fields: 'issue_id', 'repo', 'title', 'created_at', 'closed_at', 'hubspot_ticket_link', 'create_user', 'assign_users', 'status', 'current_labels', 'process_time_seconds', 'developers', 'code_reviewers', 'publishers', 'qa_members', 'pm_qa_user', 'team'"),
15
16
  });
16
17
  export const GetIssueSchema = z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmob/github-issues",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "MCP server for using the GitHub API",
5
5
  "license": "MIT",
6
6
  "author": "FeedMob",
@@ -32,5 +32,9 @@
32
32
  "devDependencies": {
33
33
  "shx": "^0.3.4",
34
34
  "typescript": "^5.6.2"
35
+ },
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "https://github.com/feed-mob/fm-mcp-servers"
35
39
  }
36
40
  }