mirror of
https://github.com/coleam00/Archon.git
synced 2026-01-05 06:08:42 -05:00
The New Archon (Beta) - The Operating System for AI Coding Assistants!
This commit is contained in:
14
original_archon/agent-resources/mcps/airtable.json
Normal file
14
original_archon/agent-resources/mcps/airtable.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"airtable": {
|
||||
"command": "npx",
|
||||
"args": [
|
||||
"-y",
|
||||
"airtable-mcp-server"
|
||||
],
|
||||
"env": {
|
||||
"AIRTABLE_API_KEY": "pat123.abc123"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
14
original_archon/agent-resources/mcps/brave_search.json
Normal file
14
original_archon/agent-resources/mcps/brave_search.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"brave-search": {
|
||||
"command": "npx",
|
||||
"args": [
|
||||
"-y",
|
||||
"@modelcontextprotocol/server-brave-search"
|
||||
],
|
||||
"env": {
|
||||
"BRAVE_API_KEY": "YOUR_API_KEY_HERE"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
14
original_archon/agent-resources/mcps/chroma.json
Normal file
14
original_archon/agent-resources/mcps/chroma.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"chroma": {
|
||||
"command": "uvx",
|
||||
"args": [
|
||||
"chroma-mcp",
|
||||
"--client-type",
|
||||
"persistent",
|
||||
"--data-dir",
|
||||
"/full/path/to/your/data/directory"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
13
original_archon/agent-resources/mcps/file_system.json
Normal file
13
original_archon/agent-resources/mcps/file_system.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"filesystem": {
|
||||
"command": "npx",
|
||||
"args": [
|
||||
"-y",
|
||||
"@modelcontextprotocol/server-filesystem",
|
||||
"/Users/username/Desktop",
|
||||
"/path/to/other/allowed/dir"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
19
original_archon/agent-resources/mcps/firecrawl.json
Normal file
19
original_archon/agent-resources/mcps/firecrawl.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"mcp-server-firecrawl": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "firecrawl-mcp"],
|
||||
"env": {
|
||||
"FIRECRAWL_API_KEY": "YOUR_API_KEY_HERE",
|
||||
|
||||
"FIRECRAWL_RETRY_MAX_ATTEMPTS": "5",
|
||||
"FIRECRAWL_RETRY_INITIAL_DELAY": "2000",
|
||||
"FIRECRAWL_RETRY_MAX_DELAY": "30000",
|
||||
"FIRECRAWL_RETRY_BACKOFF_FACTOR": "3",
|
||||
|
||||
"FIRECRAWL_CREDIT_WARNING_THRESHOLD": "2000",
|
||||
"FIRECRAWL_CREDIT_CRITICAL_THRESHOLD": "500"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
16
original_archon/agent-resources/mcps/git.json
Normal file
16
original_archon/agent-resources/mcps/git.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"git": {
|
||||
"command": "docker",
|
||||
"args": [
|
||||
"run",
|
||||
"--rm",
|
||||
"-i",
|
||||
"--mount", "type=bind,src=/Users/username/Desktop,dst=/projects/Desktop",
|
||||
"--mount", "type=bind,src=/path/to/other/allowed/dir,dst=/projects/other/allowed/dir,ro",
|
||||
"--mount", "type=bind,src=/path/to/file.txt,dst=/projects/path/to/file.txt",
|
||||
"mcp/git"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
14
original_archon/agent-resources/mcps/github.json
Normal file
14
original_archon/agent-resources/mcps/github.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"github": {
|
||||
"command": "npx",
|
||||
"args": [
|
||||
"-y",
|
||||
"@modelcontextprotocol/server-github"
|
||||
],
|
||||
"env": {
|
||||
"GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
original_archon/agent-resources/mcps/google_drive.json
Normal file
8
original_archon/agent-resources/mcps/google_drive.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"gdrive": {
|
||||
"command": "docker",
|
||||
"args": ["run", "-i", "--rm", "-v", "mcp-gdrive:/gdrive-server", "-e", "GDRIVE_CREDENTIALS_PATH=/gdrive-server/credentials.json", "mcp/gdrive"]
|
||||
}
|
||||
}
|
||||
}
|
||||
12
original_archon/agent-resources/mcps/qdrant.json
Normal file
12
original_archon/agent-resources/mcps/qdrant.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"qdrant": {
|
||||
"command": "uvx",
|
||||
"args": ["mcp-server-qdrant"],
|
||||
"env": {
|
||||
"QDRANT_URL": "https://xyz-example.eu-central.aws.cloud.qdrant.io:6333",
|
||||
"QDRANT_API_KEY": "your_api_key",
|
||||
"COLLECTION_NAME": "your-collection-name",
|
||||
"EMBEDDING_MODEL": "sentence-transformers/all-MiniLM-L6-v2"
|
||||
}
|
||||
}
|
||||
}
|
||||
12
original_archon/agent-resources/mcps/redis.json
Normal file
12
original_archon/agent-resources/mcps/redis.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"redis": {
|
||||
"command": "npx",
|
||||
"args": [
|
||||
"-y",
|
||||
"@modelcontextprotocol/server-redis",
|
||||
"redis://localhost:6379"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
15
original_archon/agent-resources/mcps/slack.json
Normal file
15
original_archon/agent-resources/mcps/slack.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"slack": {
|
||||
"command": "npx",
|
||||
"args": [
|
||||
"-y",
|
||||
"@modelcontextprotocol/server-slack"
|
||||
],
|
||||
"env": {
|
||||
"SLACK_BOT_TOKEN": "xoxb-your-bot-token",
|
||||
"SLACK_TEAM_ID": "T01234567"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
17
original_archon/agent-resources/mcps/sqlite.json
Normal file
17
original_archon/agent-resources/mcps/sqlite.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"sqlite": {
|
||||
"command": "docker",
|
||||
"args": [
|
||||
"run",
|
||||
"--rm",
|
||||
"-i",
|
||||
"-v",
|
||||
"mcp-test:/mcp",
|
||||
"mcp/sqlite",
|
||||
"--db-path",
|
||||
"/mcp/test.db"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user