Back to stacks

Data Analyst

by Jonathan S

Query PostgreSQL, Airtable, and SQLite. Use Sequential Thinking for deep analysis.

Servers in this stack

database
PostgreSQL

Query and manage PostgreSQL databases.

@modelcontextprotocol/server-postgres
database
SQLite

Create, query, and manage SQLite databases.

@modelcontextprotocol/server-sqlite
database
Airtable

Read and write Airtable bases, tables, and records.

ai
Sequential Thinking

Dynamic and reflective problem-solving through sequential thought chains.

@modelcontextprotocol/server-sequential-thinking
file-system
Filesystem

Read and write files on the local filesystem.

@modelcontextprotocol/server-filesystem

Copy config

// .vscode/mcp.json
{
"servers": {
"postgresql": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres"
],
"type": "stdio"
},
"sqlite": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite"
],
"type": "stdio"
},
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"type": "stdio"
},
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem"
],
"type": "stdio"
}
}
}