-
Notifications
You must be signed in to change notification settings - Fork 87
chore: Add Boikot MCP Server #232
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,72 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "display_name": "Boikot MCP Server", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "license": "GPL v3", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "tags": [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "ethics", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "corporate ethics", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "company information", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "MCP", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "lookup tool" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "examples": [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "prompt": "What can you tell me about the ethics of Amazon?" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "prompt": "Is Nestl\u00e9 considered ethical?" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "prompt": "Look up information about Apple's corporate practices" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "prompt": "What ethical issues are associated with Facebook?" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "prompt": "Tell me about the ethics record of McDonald's" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "name": "boikot-mcp", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "repository": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "type": "git", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "url": "https://github.com/boikot-xyz/boikot" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "homepage": "https://github.com/boikot-xyz/boikot", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "author": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "name": "boikot-xyz" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "boikot is a community-led initiative to make data on company ethics transparent and accessible.", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "categories": [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "Error" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
coderabbitai[bot] marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "installations": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "http": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "url": "https://mcp.boikot.xyz/mcp" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify installation endpoint availability and protocol. 🏁 Script executed: #!/bin/bash
# Basic availability check and content-type sniff
set -e
curl -sSL -D - -o /dev/null https://mcp.boikot.xyz/mcp | sed -n '1,10p'
curl -sSL https://mcp.boikot.xyz/mcp | head -c 500 | sed -n '1,20p'Length of output: 513 Include SSE Accept header or switch to SSE protocol for MCP installation The endpoint • In • Verify the handshake returns the expected MCP metadata: curl -H "Accept: text/event-stream" https://mcp.boikot.xyz/mcpEnsure you receive a 200 OK and the SSE stream. 🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "tools": [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "name": "lookup_company_information", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "Lookup information about a company's ethics.", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "input_schema": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "type": "object", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "properties": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "company_name": { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "type": "string", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "The name of the company to look up." | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+57
to
+71
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Enforce required input and schema strictness for the tool. "tools": [
{
"name": "lookup_company_information",
"description": "Lookup information about a company's ethics.",
"input_schema": {
"type": "object",
+ "additionalProperties": false,
+ "required": ["company_name"],
"properties": {
"company_name": {
"type": "string",
+ "minLength": 1,
"description": "The name of the company to look up."
}
}
}
}
],📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "is_official": false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,53 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "display_name": "Boikot MCP Server", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "license": "GPL v3", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Use an SPDX-compliant license identifier (e.g., GPL-3.0). "GPL v3" is not an SPDX identifier. Most registries/tools expect SPDX strings (e.g., GPL-3.0-only or GPL-3.0-or-later). Apply this diff: - "license": "GPL v3",
+ "license": "GPL-3.0",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "tags": [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "ethics", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "corporate ethics", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "company information", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "MCP", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "lookup tool" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "examples": [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "prompt": "What can you tell me about the ethics of Amazon?" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "prompt": "Is Nestl\u00e9 considered ethical?" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "prompt": "Look up information about Apple's corporate practices" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "description": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "prompt": "What ethical issues are associated with Facebook?" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| "title": "", | |
| "title": "Amazon Ethics Overview", | |
| "description": "", | |
| "prompt": "What can you tell me about the ethics of Amazon?" | |
| }, | |
| { | |
| "title": "Nestlé Ethical Evaluation", | |
| "description": "", | |
| "prompt": "Is Nestl\u00e9 considered ethical?" | |
| }, | |
| { | |
| "title": "Apple Corporate Practices Lookup", | |
| "description": "", | |
| "prompt": "Look up information about Apple's corporate practices" | |
| }, | |
| { | |
| "title": "Facebook Ethical Issues", | |
| "description": "", | |
| "prompt": "What ethical issues are associated with Facebook?" | |
| }, | |
| { | |
| "title": "McDonald's Ethics Record", |
Copilot
AI
Aug 13, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description field is empty for all examples. Consider providing descriptions that explain what each example demonstrates or accomplishes.
| "description": "", | |
| "description": "Asks for an overview of Amazon's ethical practices and reputation.", | |
| "prompt": "What can you tell me about the ethics of Amazon?" | |
| }, | |
| { | |
| "title": "", | |
| "description": "Requests an assessment of Nestlé's ethical standing.", | |
| "prompt": "Is Nestl\u00e9 considered ethical?" | |
| }, | |
| { | |
| "title": "", | |
| "description": "Seeks information on Apple's corporate practices and ethics.", | |
| "prompt": "Look up information about Apple's corporate practices" | |
| }, | |
| { | |
| "title": "", | |
| "description": "Inquires about ethical controversies or issues related to Facebook.", | |
| "prompt": "What ethical issues are associated with Facebook?" | |
| }, | |
| { | |
| "title": "", | |
| "description": "Requests details about McDonald's ethical record and practices.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Fill in example titles/descriptions; avoid empty strings.
Empty "title" and "description" fields look like placeholders and degrade UX in clients that render example cards.
Proposed concrete titles/descriptions:
{
- "title": "",
- "description": "",
+ "title": "Amazon ethics overview",
+ "description": "High-level summary of Amazon’s ethical track record and controversies.",
"prompt": "What can you tell me about the ethics of Amazon?"
},
{
- "title": "",
- "description": "",
+ "title": "Is Nestlé ethical?",
+ "description": "Assess Nestlé’s ethical practices across sourcing, labor, environment, and governance.",
"prompt": "Is Nestl\u00e9 considered ethical?"
},
{
- "title": "",
- "description": "",
+ "title": "Apple corporate practices",
+ "description": "Look up Apple’s corporate ethics, including supply chain and privacy practices.",
"prompt": "Look up information about Apple's corporate practices"
},
{
- "title": "",
- "description": "",
+ "title": "Facebook ethical issues",
+ "description": "Summarize key ethical concerns related to Facebook/Meta.",
"prompt": "What ethical issues are associated with Facebook?"
},
{
- "title": "",
- "description": "",
+ "title": "McDonald’s ethics record",
+ "description": "Overview of McDonald’s ethical record and relevant sources.",
"prompt": "Tell me about the ethics record of McDonald's"
}If you prefer fewer fields, removing empty "title"/"description" is better than leaving them blank.
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| "examples": [ | |
| { | |
| "title": "", | |
| "description": "", | |
| "prompt": "What can you tell me about the ethics of Amazon?" | |
| }, | |
| { | |
| "title": "", | |
| "description": "", | |
| "prompt": "Is Nestl\u00e9 considered ethical?" | |
| }, | |
| { | |
| "title": "", | |
| "description": "", | |
| "prompt": "Look up information about Apple's corporate practices" | |
| }, | |
| { | |
| "title": "", | |
| "description": "", | |
| "prompt": "What ethical issues are associated with Facebook?" | |
| }, | |
| { | |
| "title": "", | |
| "description": "", | |
| "prompt": "Tell me about the ethics record of McDonald's" | |
| } | |
| ], | |
| "examples": [ | |
| { | |
| "title": "Amazon ethics overview", | |
| "description": "High-level summary of Amazon’s ethical track record and controversies.", | |
| "prompt": "What can you tell me about the ethics of Amazon?" | |
| }, | |
| { | |
| "title": "Is Nestlé ethical?", | |
| "description": "Assess Nestlé’s ethical practices across sourcing, labor, environment, and governance.", | |
| "prompt": "Is Nestl\u00e9 considered ethical?" | |
| }, | |
| { | |
| "title": "Apple corporate practices", | |
| "description": "Look up Apple’s corporate ethics, including supply chain and privacy practices.", | |
| "prompt": "Look up information about Apple's corporate practices" | |
| }, | |
| { | |
| "title": "Facebook ethical issues", | |
| "description": "Summarize key ethical concerns related to Facebook/Meta.", | |
| "prompt": "What ethical issues are associated with Facebook?" | |
| }, | |
| { | |
| "title": "McDonald’s ethics record", | |
| "description": "Overview of McDonald’s ethical record and relevant sources.", | |
| "prompt": "Tell me about the ethics record of McDonald's" | |
| } | |
| ], |
🤖 Prompt for AI Agents
In mcp-registry/servers/[email protected] around lines 11 to 37, the
example entries contain empty "title" and "description" strings which degrade
UX; replace each empty "title" and "description" with concise, meaningful text
(e.g., summarize the prompt in the title and add a short purpose or context in
description) or remove the "title"/"description" fields entirely for entries you
don't want to annotate; ensure the final JSON keeps valid structure and that
every example either has non-empty title/description or omits those fields.
Outdated
Copilot
AI
Aug 13, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The category is set to "Error" which appears to be a placeholder or incorrect value. This should be replaced with an appropriate category that describes the server's functionality.
| "Error" | |
| "Ethics" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Fill example titles/descriptions for better UX and discoverability.
Empty title/description fields reduce usefulness in UIs and docs. Provide concise, descriptive values.
"examples": [ { - "title": "", - "description": "", + "title": "Amazon ethics overview", + "description": "Summarize key ethical concerns and sources about Amazon.", "prompt": "What can you tell me about the ethics of Amazon?" }, { - "title": "", - "description": "", + "title": "Nestlé ethical assessment", + "description": "Check whether Nestlé is considered ethical and why.", "prompt": "Is Nestl\u00e9 considered ethical?" }, { - "title": "", - "description": "", + "title": "Apple corporate practices", + "description": "Retrieve information on Apple’s corporate practices and controversies.", "prompt": "Look up information about Apple's corporate practices" }, { - "title": "", - "description": "", + "title": "Facebook ethical issues", + "description": "List notable ethical issues associated with Facebook and supporting sources.", "prompt": "What ethical issues are associated with Facebook?" }, { - "title": "", - "description": "", + "title": "McDonald’s ethics record", + "description": "Summarize McDonald’s ethics record with references.", "prompt": "Tell me about the ethics record of McDonald's" } ],🤖 Prompt for AI Agents