Skip to content
Open
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ run_experiments/
generated/
runs/
testst/
test/

# System files
.DS_Store
Expand All @@ -175,7 +176,6 @@ flask_test.log
# Temporary files
*.tmp
*.temp

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
Expand Down
18 changes: 18 additions & 0 deletions config.template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,21 @@ llm_api_key = ""
# Budget allocation preference for pipeline modules: balanced, write-heavy,
# think-heavy, or review-heavy
#budget_preference = "balanced"

#################################### MCP ####################################
[mcp.servers]

[mcp.servers.code_search]
command = "python"
args = ["-m", "tiny_scientist.mcp.code_search_server"]
cwd = "."

[mcp.servers.paper_search]
command = "python"
args = ["-m", "tiny_scientist.mcp.paper_search_server"]
cwd = "."

[mcp.servers.drawer]
command = "python"
args = ["-m", "tiny_scientist.mcp.drawer_server"]
cwd = "."
Loading