Skip to content

Commit 4f0af7e

Browse files
authored
Merge pull request #89 from sean-lynch/remove_missing_feature_docs
[sqlite server] Remove docs on missing Anthropic summary feature
2 parents 5a279e5 + 75e6fa1 commit 4f0af7e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/sqlite/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
# SQLite MCP Server
22

33
## Overview
4-
A Model Context Protocol (MCP) server implementation that provides database interaction and business intelligence capabilities through SQLite. This server enables running SQL queries, analyzing business data, and automatically generating business insight memos that can be enhanced with Claude's analysis when an Anthropic API key is provided.
4+
A Model Context Protocol (MCP) server implementation that provides database interaction and business intelligence capabilities through SQLite. This server enables running SQL queries, analyzing business data, and automatically generating business insight memos.
55

66
## Components
77

88
### Resources
99
The server exposes a single dynamic resource:
1010
- `memo://insights`: A continuously updated business insights memo that aggregates discovered insights during analysis
1111
- Auto-updates as new insights are discovered via the append-insight tool
12-
- Optional enhancement through Claude for professional formatting (requires Anthropic API key)
1312

1413
### Prompts
1514
The server provides a demonstration prompt:
@@ -25,7 +24,7 @@ The server offers six core tools:
2524
#### Query Tools
2625
- `read-query`
2726
- Execute SELECT queries to read data from the database
28-
- Input:
27+
- Input:
2928
- `query` (string): The SELECT SQL query to execute
3029
- Returns: Query results as array of objects
3130

src/sqlite/src/mcp_server_sqlite/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
Prompts:
2626
This server provides a pre-written prompt called "mcp-demo" that helps users create and analyze database scenarios. The prompt accepts a "topic" argument and guides users through creating tables, analyzing data, and generating insights. For example, if a user provides "retail sales" as the topic, the prompt will help create relevant database tables and guide the analysis process. Prompts basically serve as interactive templates that help structure the conversation with the LLM in a useful way.
2727
Resources:
28-
This server exposes one key resource: "memo://insights", which is a business insights memo that gets automatically updated throughout the analysis process. As users analyze the database and discover insights, the memo resource gets updated in real-time to reflect new findings. The memo can even be enhanced with Claude's help if an Anthropic API key is provided, turning raw insights into a well-structured business document. Resources act as living documents that provide context to the conversation.
28+
This server exposes one key resource: "memo://insights", which is a business insights memo that gets automatically updated throughout the analysis process. As users analyze the database and discover insights, the memo resource gets updated in real-time to reflect new findings. Resources act as living documents that provide context to the conversation.
2929
Tools:
3030
This server provides several SQL-related tools:
3131
"read-query": Executes SELECT queries to read data from the database

src/sqlite/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)