Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Commit 22331b6

Browse files
committed
Bump version to 1.0.2
1 parent 2abc75b commit 22331b6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The DeepSource MCP Server enables AI assistants to interact with DeepSource's co
2121

2222
## Features
2323

24-
* **DeepSource API Integration**: Connects to DeepSource via REST API
24+
* **DeepSource API Integration**: Connects to DeepSource via GraphQL API
2525
* **MCP Protocol Support**: Implements the Model Context Protocol for AI assistant integration
2626
* **TypeScript/Node.js**: Built with TypeScript for type safety and modern JavaScript features
2727
* **Cross-Platform**: Works on Linux, macOS, and Windows
@@ -68,7 +68,7 @@ The DeepSource MCP Server enables AI assistants to interact with DeepSource's co
6868
"command": "npx",
6969
"args": [
7070
"-y",
71-
"deepsource-mcp-server@1.0.0"
71+
"deepsource-mcp-server@1.0.2"
7272
],
7373
"env": {
7474
"DEEPSOURCE_API_KEY": "your-deepsource-api-key"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "deepsource-mcp-server",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Model Context Protocol server for DeepSource",
55
"type": "module",
66
"main": "dist/index.js",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { z } from 'zod';
88
// Initialize MCP server
99
export const mcpServer = new McpServer({
1010
name: 'deepsource-mcp-server',
11-
version: '1.0.1',
11+
version: '1.0.2',
1212
});
1313

1414
// Export handler functions for testing

0 commit comments

Comments
 (0)