This repository was archived by the owner on Nov 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { z } from 'zod';
88// Initialize MCP server
99export 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
You can’t perform that action at this time.
0 commit comments