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
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ Claude Code, Cursor CLI, OpenAI Codex, Gemini CLI, Kiro CLI, OpenCode, and Ollam

Terminal, process manager, git, file search, HTTP client, environment variables, network diagnostics, cron jobs, and system info all callable by the LLM.

### 13 MCP Servers
### 15 MCP Servers

Connect GitHub, Brave Search, Puppeteer, PostgreSQL, MongoDB, Redis, Elasticsearch, AWS, GCP, Cloudflare, Vercel, Atlassian, and Supabase as external tools via the Model Context Protocol.
Connect GitHub, Brave Search, Puppeteer, PostgreSQL, MongoDB, Redis, Elasticsearch, AWS, GCP, Cloudflare, Vercel, Atlassian, Supabase, CircleCI, and Postman as external tools via the Model Context Protocol.

### Session Logging

Expand Down Expand Up @@ -175,11 +175,13 @@ txtcode integrates with the **Model Context Protocol** to connect external tool

### Developer Tools

| Server | Transport | Description |
| :--------------- | :-------- | :-------------------------------------------- |
| **GitHub** | stdio | Repos, issues, PRs, code search, Actions |
| **Brave Search** | stdio | Web, image, video, and news search |
| **Puppeteer** | stdio | Browser automation, screenshots, form filling |
| Server | Transport | Description |
| :--------------- | :-------- | :-------------------------------------------------------- |
| **GitHub** | stdio | Repos, issues, PRs, code search, Actions |
| **Brave Search** | stdio | Web, image, video, and news search |
| **Puppeteer** | stdio | Browser automation, screenshots, form filling |
| **CircleCI** | stdio | Build logs, flaky tests, pipeline status, rerun workflows |
| **Postman** | stdio | Collections, workspaces, API specs, code generation |

### Databases

Expand Down
26 changes: 26 additions & 0 deletions src/data/mcp_servers.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,32 @@
"requiresToken": true,
"tokenPrompt": "Enter Supabase Access Token:",
"keychainKey": "mcp-supabase"
},
{
"id": "circleci",
"name": "CircleCI",
"description": "Build logs, flaky tests, pipeline status, config validation, rerun workflows",
"category": "developer",
"transport": "stdio",
"command": "npx",
"args": ["-y", "@circleci/mcp-server-circleci@latest"],
"requiresToken": true,
"tokenPrompt": "Enter CircleCI Personal API Token:",
"tokenEnvKey": "CIRCLECI_TOKEN",
"keychainKey": "mcp-circleci"
},
{
"id": "postman",
"name": "Postman",
"description": "Collections, workspaces, environments, API specs, monitors, code generation",
"category": "developer",
"transport": "stdio",
"command": "npx",
"args": ["-y", "@postman/postman-mcp-server"],
"requiresToken": true,
"tokenPrompt": "Enter Postman API Key:",
"tokenEnvKey": "POSTMAN_API_KEY",
"keychainKey": "mcp-postman"
}
],
"categories": {
Expand Down
6 changes: 4 additions & 2 deletions test/unit/mcp-catalog-loader.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ describe("MCP Catalog Loader", () => {

expect(catalog.servers).toBeDefined();
expect(Array.isArray(catalog.servers)).toBe(true);
expect(catalog.servers.length).toBe(13);
expect(catalog.servers.length).toBe(15);
expect(catalog.categories).toBeDefined();
});

it("returns all 13 expected servers", () => {
it("returns all 15 expected servers", () => {
const catalog = loadMCPServersCatalog();
const ids = catalog.servers.map((s) => s.id);

Expand All @@ -37,6 +37,8 @@ describe("MCP Catalog Loader", () => {
expect(ids).toContain("vercel");
expect(ids).toContain("atlassian");
expect(ids).toContain("supabase");
expect(ids).toContain("circleci");
expect(ids).toContain("postman");
});

it("stdio servers have command field", () => {
Expand Down