Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .env.example.mcp

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ After installation with `pip install -e .[all]`, the following command-line util
### Development and Integration Tools

- **`smartem_agent_tools`** - Agent development and debugging utilities
- **`smartem-mcp`** - Model Context Protocol (MCP) integration tools

### Data Retention Policies

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ graph TB
subgraph athena["athena_api"]
athena_client["client.py<br/>External API Integration"]
end

subgraph mcp["smartem_mcp"]
mcp_server["server.py<br/>Model Context Protocol"]
end
end

subgraph infra["Infrastructure Services"]
Expand Down Expand Up @@ -119,7 +115,7 @@ graph TB
classDef equipment fill:#e8f5e8,stroke:#2e7d32,stroke-width:2px
classDef communication fill:#fff8e1,stroke:#f57f17,stroke-width:2px

class k8s,packages,backend,common,athena,mcp,infra k8s
class k8s,packages,backend,common,athena,infra k8s
class boundary,agents,agent_pkg,equipment boundary
class db,mq database
class scope1,scope2,scopeN,epu1,epu2,epuN,em1,em2,emN,gpfs1,gpfs2,gpfsN equipment
Expand Down
25 changes: 0 additions & 25 deletions docs/how-to/configure-environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ The project uses multiple environment configuration patterns for different deplo
| `.env.k8s.staging` | K8s staging cluster config | Yes | Copy from `.env.example.k8s.staging` |
| `.env.example.k8s.production` | Template for K8s production | No (committed) | N/A |
| `.env.k8s.production` | K8s production cluster config | Yes | Copy from `.env.example.k8s.production` |
| `.env.example.mcp` | Template for MCP configuration | No (committed) | N/A |
| `.env.mcp` | MCP server configuration | Yes | Copy from `.env.example.mcp` |

## Environment File Types

Expand Down Expand Up @@ -131,28 +129,6 @@ cp .env.example.k8s.production .env.k8s.production
- Production CI/CD pipelines
- Production deployment automation

### 5. MCP Configuration: `.env.mcp`

**Use Case**: Configuring Model Context Protocol (MCP) server for Claude Code integration.

**Setup**:
```bash
cp .env.example.mcp .env.mcp
# Configure paths and adapter settings
```

**Key Configuration**:
```bash
SMARTEM_MCP_DATA_PATH=/path/to/epu/sessions # Filesystem adapter
SMARTEM_MCP_API_URL=http://backend:8000 # API adapter
SMARTEM_MCP_ADAPTER=filesystem # Adapter selection
SMARTEM_MCP_LOG_LEVEL=INFO
```

**Used By**:
- MCP server when run via Claude Code
- See [Use MCP Interface](use-mcp-interface.md) for details

## Quick Start: First-Time Setup

For local development on a new machine:
Expand Down Expand Up @@ -344,4 +320,3 @@ env | grep POSTGRES
- [Deploy to Kubernetes](deploy-kubernetes.md) - K8s deployment guide
- [Manage Kubernetes Secrets](manage-kubernetes-secrets.md) - Sealed Secrets and security
- [Database Migrations](database-migrations.md) - Alembic migration workflow
- [Use MCP Interface](use-mcp-interface.md) - Claude Code MCP integration
Loading